Zackery Hermiston
straw enthusiast
- Phone
- (796) 635-1437
people / #75
straw enthusiast
curl -sS \
"https://example-data.com/api/v1/people/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/75"
);
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/75"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/75"
)
people = res.json() {
"id": 75,
"fullName": "Zackery Hermiston",
"firstName": "Zackery",
"lastName": "Hermiston",
"email": "zackery.hermiston-75@example.com",
"phone": "(796) 635-1437",
"occupation": "Customer Security Engineer",
"city": "Port Elaina",
"countryAlpha2": "IT",
"bio": "straw enthusiast",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-75",
"createdAt": "2022-04-10T14:57:05.520Z"
}