Kristoffer Hayes
bend devotee
- Phone
- +1 202-555-0123 ext 2
Overview
people / #124
bend devotee
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/124" ); 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/124"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/124"
)
people = res.json() Response
{
"id": 124,
"fullName": "Kristoffer Hayes",
"firstName": "Kristoffer",
"lastName": "Hayes",
"email": "kristoffer.hayes-124@example.com",
"phone": "+1 202-555-0123 ext 2",
"occupation": "Direct Factors Analyst",
"city": "Alexandria",
"countryAlpha2": "AT",
"bio": "bend devotee",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-124",
"createdAt": "2024-04-06T02:52:58.268Z"
}