Coralie Feil
hovercraft supporter
- Phone
- (934) 948-0916
people / #140
hovercraft supporter
curl -sS \
"https://example-data.com/api/v1/people/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/140"
);
const people = await res.json();import type { People } from "https://example-data.com/types/people.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/people/140"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/140"
)
people = res.json() {
"id": 140,
"fullName": "Coralie Feil",
"firstName": "Coralie",
"lastName": "Feil",
"email": "coralie.feil-140@example.com",
"phone": "(934) 948-0916",
"occupation": "Future Response Planner",
"city": "Quitzonstead",
"countryAlpha2": "GB",
"bio": "hovercraft supporter",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-140",
"createdAt": "2025-08-10T19:02:11.968Z"
}