Harley Schaden
lava advocate, educator
- Phone
- +1 202-555-0197 ext 2
Overview
people / #198
lava advocate, educator
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/198" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/198" ); const person = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person } from "./types/people";
const res = await fetch(
"https://example-data.com/api/v1/people/198"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/198"
)
people = res.json() Response
{
"id": 198,
"fullName": "Harley Schaden",
"firstName": "Harley",
"lastName": "Schaden",
"email": "harley.schaden-198@example.com",
"phone": "+1 202-555-0197 ext 2",
"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"
}