Damon Terry
hubris devotee, streamer
- Phone
- +1 202-555-0192 ext 2
Overview
people / #193
hubris devotee, streamer
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/193" ); 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/193"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/193"
)
people = res.json() Response
{
"id": 193,
"fullName": "Damon Terry",
"firstName": "Damon",
"lastName": "Terry",
"email": "damon.terry-193@example.com",
"phone": "+1 202-555-0192 ext 2",
"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"
}