Kristoffer Hayes
bend devotee
- Phone
- (371) 231-6028
people / #124
bend devotee
curl -sS \
"https://example-data.com/api/v1/people/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/124"
);
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/124"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/124"
)
people = res.json() {
"id": 124,
"fullName": "Kristoffer Hayes",
"firstName": "Kristoffer",
"lastName": "Hayes",
"email": "kristoffer.hayes-124@example.com",
"phone": "(371) 231-6028",
"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"
}