Delilah Tillman
dreamer, geek, gamer ✨
- Phone
- (702) 861-2220
people / #162
dreamer, geek, gamer ✨
curl -sS \
"https://example-data.com/api/v1/people/162" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/162"
);
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/162"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/162"
)
people = res.json() {
"id": 162,
"fullName": "Delilah Tillman",
"firstName": "Delilah",
"lastName": "Tillman",
"email": "delilah.tillman-162@example.com",
"phone": "(702) 861-2220",
"occupation": "Dynamic Paradigm Director",
"city": "Abbottville",
"countryAlpha2": "MX",
"bio": "dreamer, geek, gamer ✨",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-162",
"createdAt": "2025-12-25T16:06:06.574Z"
}