Judd Walter
bookend junkie, person 🥉
- Phone
- (335) 636-5232
people / #187
bookend junkie, person 🥉
curl -sS \
"https://example-data.com/api/v1/people/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/187"
);
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/187"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/187"
)
people = res.json() {
"id": 187,
"fullName": "Judd Walter",
"firstName": "Judd",
"lastName": "Walter",
"email": "judd.walter-187@example.com",
"phone": "(335) 636-5232",
"occupation": "Forward Web Strategist",
"city": "East Dinobury",
"countryAlpha2": "MY",
"bio": "bookend junkie, person 🥉",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-187",
"createdAt": "2024-12-22T18:28:40.459Z"
}