Marcus Senger
bookcase devotee 🎇
- Phone
- (292) 580-1892
people / #30
bookcase devotee 🎇
curl -sS \
"https://example-data.com/api/v1/people/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/30"
);
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/30"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/30"
)
people = res.json() {
"id": 30,
"fullName": "Marcus Senger",
"firstName": "Marcus",
"lastName": "Senger",
"email": "marcus.senger-30@example.com",
"phone": "(292) 580-1892",
"occupation": "Dynamic Integration Agent",
"city": "West Elmira",
"countryAlpha2": "GB",
"bio": "bookcase devotee 🎇",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-30",
"createdAt": "2025-05-06T10:13:11.458Z"
}