Lillie Sawayn
photographer, developer, designer 😫
- Phone
- (745) 546-8416
people / #50
photographer, developer, designer 😫
curl -sS \
"https://example-data.com/api/v1/people/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/50"
);
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/50"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/50"
)
people = res.json() {
"id": 50,
"fullName": "Lillie Sawayn",
"firstName": "Lillie",
"lastName": "Sawayn",
"email": "lillie.sawayn-50@example.com",
"phone": "(745) 546-8416",
"occupation": "Regional Research Director",
"city": "Stiedemannberg",
"countryAlpha2": "KE",
"bio": "photographer, developer, designer 😫",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-50",
"createdAt": "2024-03-16T05:27:10.040Z"
}