Napoleon Feest
filmmaker
- Phone
- (431) 604-7866
people / #172
filmmaker
Napoleon Feest
filmmaker
curl -sS \
"https://example-data.com/api/v1/people/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/172"
);
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/172"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/172"
)
people = res.json() {
"id": 172,
"fullName": "Napoleon Feest",
"firstName": "Napoleon",
"lastName": "Feest",
"email": "napoleon.feest-172@example.com",
"phone": "(431) 604-7866",
"occupation": "Chief Creative Supervisor",
"city": "Pflugerville",
"countryAlpha2": "ET",
"bio": "filmmaker",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-172",
"createdAt": "2025-04-17T21:44:03.015Z"
}