Scarlett Adams
veteran, creator
- Phone
- (542) 680-7953
people / #19
veteran, creator
curl -sS \
"https://example-data.com/api/v1/people/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/19"
);
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/19"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/19"
)
people = res.json() {
"id": 19,
"fullName": "Scarlett Adams",
"firstName": "Scarlett",
"lastName": "Adams",
"email": "scarlett.adams-19@example.com",
"phone": "(542) 680-7953",
"occupation": "District Infrastructure Supervisor",
"city": "Boylemouth",
"countryAlpha2": "FR",
"bio": "veteran, creator",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-19",
"createdAt": "2024-09-16T12:37:38.205Z"
}