Ernestine Hintz
sustenance advocate 🤛🏼
- Phone
- (480) 290-4989
people / #80
sustenance advocate 🤛🏼
curl -sS \
"https://example-data.com/api/v1/people/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/80"
);
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/80"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/80"
)
people = res.json() {
"id": 80,
"fullName": "Ernestine Hintz",
"firstName": "Ernestine",
"lastName": "Hintz",
"email": "ernestine.hintz-80@example.com",
"phone": "(480) 290-4989",
"occupation": "National Group Planner",
"city": "New Adrienne",
"countryAlpha2": "SG",
"bio": "sustenance advocate 🤛🏼",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-80",
"createdAt": "2024-11-16T09:00:26.673Z"
}