Reyna Keebler
jump junkie, foodie 🧹
- Phone
- (667) 286-8369
people / #129
jump junkie, foodie 🧹
curl -sS \
"https://example-data.com/api/v1/people/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/129"
);
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/129"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/129"
)
people = res.json() {
"id": 129,
"fullName": "Reyna Keebler",
"firstName": "Reyna",
"lastName": "Keebler",
"email": "reyna.keebler-129@example.com",
"phone": "(667) 286-8369",
"occupation": "Senior Mobility Associate",
"city": "Palm Bay",
"countryAlpha2": "ET",
"bio": "jump junkie, foodie 🧹",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-129",
"createdAt": "2025-11-05T03:21:30.668Z"
}