Velda Denesik
veteran, model, educator 🇩🇿
- Phone
- (553) 664-9985
people / #145
veteran, model, educator 🇩🇿
curl -sS \
"https://example-data.com/api/v1/people/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/145"
);
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/145"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/145"
)
people = res.json() {
"id": 145,
"fullName": "Velda Denesik",
"firstName": "Velda",
"lastName": "Denesik",
"email": "velda.denesik-145@example.com",
"phone": "(553) 664-9985",
"occupation": "Investor Creative Planner",
"city": "East Albertcester",
"countryAlpha2": "NG",
"bio": "veteran, model, educator 🇩🇿",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-145",
"createdAt": "2023-05-22T17:28:54.920Z"
}