Kristoffer Ryan
daughter devotee 👂🏽
- Phone
- (676) 549-7395
people / #24
daughter devotee 👂🏽
curl -sS \
"https://example-data.com/api/v1/people/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/24"
);
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/24"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/24"
)
people = res.json() {
"id": 24,
"fullName": "Kristoffer Ryan",
"firstName": "Kristoffer",
"lastName": "Ryan",
"email": "kristoffer.ryan-24@example.com",
"phone": "(676) 549-7395",
"occupation": "Direct Program Executive",
"city": "Philipworth",
"countryAlpha2": "EG",
"bio": "daughter devotee 👂🏽",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-24",
"createdAt": "2026-02-20T15:47:45.952Z"
}