Harley Schaden
lava advocate, educator
- Phone
- (824) 927-4595
people / #198
lava advocate, educator
curl -sS \
"https://example-data.com/api/v1/people/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/198"
);
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/198"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/198"
)
people = res.json() {
"id": 198,
"fullName": "Harley Schaden",
"firstName": "Harley",
"lastName": "Schaden",
"email": "harley.schaden-198@example.com",
"phone": "(824) 927-4595",
"occupation": "Senior Creative Director",
"city": "Ames",
"countryAlpha2": "PK",
"bio": "lava advocate, educator",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-198",
"createdAt": "2026-05-03T08:10:24.757Z"
}