Brandon Schaden
traveler, geek, streamer
- Phone
- (334) 478-5238
people / #194
traveler, geek, streamer
curl -sS \
"https://example-data.com/api/v1/people/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/194"
);
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/194"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/194"
)
people = res.json() {
"id": 194,
"fullName": "Brandon Schaden",
"firstName": "Brandon",
"lastName": "Schaden",
"email": "brandon.schaden-194@example.com",
"phone": "(334) 478-5238",
"occupation": "Legacy Metrics Representative",
"city": "Fort Eloisa",
"countryAlpha2": "CA",
"bio": "traveler, geek, streamer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-194",
"createdAt": "2021-06-17T16:15:36.277Z"
}