Annamae Greenholt
blogger, nerd, scientist
- Phone
- (555) 876-3578
people / #78
blogger, nerd, scientist
curl -sS \
"https://example-data.com/api/v1/people/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/78"
);
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/78"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/78"
)
people = res.json() {
"id": 78,
"fullName": "Annamae Greenholt",
"firstName": "Annamae",
"lastName": "Greenholt",
"email": "annamae.greenholt-78@example.com",
"phone": "(555) 876-3578",
"occupation": "Corporate Solutions Assistant",
"city": "Quigleyfurt",
"countryAlpha2": "AE",
"bio": "blogger, nerd, scientist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-78",
"createdAt": "2025-10-29T20:24:15.054Z"
}