Presley King
blogger, founder, filmmaker
- Phone
- (233) 670-2849
people / #156
blogger, founder, filmmaker
curl -sS \
"https://example-data.com/api/v1/people/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/156"
);
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/156"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/156"
)
people = res.json() {
"id": 156,
"fullName": "Presley King",
"firstName": "Presley",
"lastName": "King",
"email": "presley.king-156@example.com",
"phone": "(233) 670-2849",
"occupation": "Future Accounts Supervisor",
"city": "East Wiltonborough",
"countryAlpha2": "SG",
"bio": "blogger, founder, filmmaker",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-156",
"createdAt": "2022-04-04T15:54:38.728Z"
}