Willa Ullrich-D'Amore
philosopher, photographer
- Phone
- (747) 716-3496
people / #62
philosopher, photographer
curl -sS \
"https://example-data.com/api/v1/people/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/62"
);
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/62"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/62"
)
people = res.json() {
"id": 62,
"fullName": "Willa Ullrich-D'Amore",
"firstName": "Willa",
"lastName": "Ullrich-D'Amore",
"email": "willa.ullrichdamore-62@example.com",
"phone": "(747) 716-3496",
"occupation": "Forward Paradigm Liaison",
"city": "Keelinghaven",
"countryAlpha2": "US",
"bio": "philosopher, photographer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-62",
"createdAt": "2025-12-18T14:28:48.330Z"
}