Damon Terry
hubris devotee, streamer
- Phone
- (918) 237-0155
people / #193
hubris devotee, streamer
curl -sS \
"https://example-data.com/api/v1/people/193" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/193"
);
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/193"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/193"
)
people = res.json() {
"id": 193,
"fullName": "Damon Terry",
"firstName": "Damon",
"lastName": "Terry",
"email": "damon.terry-193@example.com",
"phone": "(918) 237-0155",
"occupation": "District Group Strategist",
"city": "Fort Antoinettemouth",
"countryAlpha2": "CN",
"bio": "hubris devotee, streamer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-193",
"createdAt": "2021-09-14T23:21:27.796Z"
}