Giles Beer
person, photographer, musician
- Phone
- (783) 665-9509
people / #33
person, photographer, musician
curl -sS \
"https://example-data.com/api/v1/people/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/33"
);
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/33"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/33"
)
people = res.json() {
"id": 33,
"fullName": "Giles Beer",
"firstName": "Giles",
"lastName": "Beer",
"email": "giles.beer-33@example.com",
"phone": "(783) 665-9509",
"occupation": "Forward Quality Liaison",
"city": "Hoegerside",
"countryAlpha2": "NO",
"bio": "person, photographer, musician",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-33",
"createdAt": "2022-03-04T20:30:20.117Z"
}