Noble Pfeffer
coach
- Phone
- (756) 429-0385
people / #121
coach
Noble Pfeffer
coach
curl -sS \
"https://example-data.com/api/v1/people/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/121"
);
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/121"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/121"
)
people = res.json() {
"id": 121,
"fullName": "Noble Pfeffer",
"firstName": "Noble",
"lastName": "Pfeffer",
"email": "noble.pfeffer-121@example.com",
"phone": "(756) 429-0385",
"occupation": "Dynamic Communications Supervisor",
"city": "Whiteville",
"countryAlpha2": "ES",
"bio": "coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-121",
"createdAt": "2025-07-20T11:52:03.715Z"
}