Santa Windler
devil fan
- Phone
- (405) 658-0433
people / #196
devil fan
Santa Windler
devil fan
curl -sS \
"https://example-data.com/api/v1/people/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/196"
);
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/196"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/196"
)
people = res.json() {
"id": 196,
"fullName": "Santa Windler",
"firstName": "Santa",
"lastName": "Windler",
"email": "santa.windler-196@example.com",
"phone": "(405) 658-0433",
"occupation": "Future Data Supervisor",
"city": "Port Nicholas",
"countryAlpha2": "FR",
"bio": "devil fan",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-196",
"createdAt": "2024-01-10T08:32:38.915Z"
}