Baylee Schumm
artist, veteran, creator 👨🦳
- Phone
- (235) 269-6397
people / #60
artist, veteran, creator 👨🦳
curl -sS \
"https://example-data.com/api/v1/people/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/60"
);
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/60"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/60"
)
people = res.json() {
"id": 60,
"fullName": "Baylee Schumm",
"firstName": "Baylee",
"lastName": "Schumm",
"email": "baylee.schumm-60@example.com",
"phone": "(235) 269-6397",
"occupation": "Legacy Accountability Producer",
"city": "Ziemannchester",
"countryAlpha2": "DK",
"bio": "artist, veteran, creator 👨🦳",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-60",
"createdAt": "2023-08-21T17:13:41.438Z"
}