Wilburn Thompson
mantua lover 🇶🇦
- Phone
- (273) 206-0315
people / #27
mantua lover 🇶🇦
curl -sS \
"https://example-data.com/api/v1/people/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/27"
);
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/27"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/27"
)
people = res.json() {
"id": 27,
"fullName": "Wilburn Thompson",
"firstName": "Wilburn",
"lastName": "Thompson",
"email": "wilburn.thompson-27@example.com",
"phone": "(273) 206-0315",
"occupation": "Investor Metrics Assistant",
"city": "East Guiseppeland",
"countryAlpha2": "NZ",
"bio": "mantua lover 🇶🇦",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-27",
"createdAt": "2025-11-09T20:22:38.092Z"
}