Eden Greenholt
pulse junkie, person 🇰🇷
- Phone
- (955) 481-7009
people / #48
pulse junkie, person 🇰🇷
curl -sS \
"https://example-data.com/api/v1/people/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/48"
);
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/48"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/48"
)
people = res.json() {
"id": 48,
"fullName": "Eden Greenholt",
"firstName": "Eden",
"lastName": "Greenholt",
"email": "eden.greenholt-48@example.com",
"phone": "(955) 481-7009",
"occupation": "International Web Developer",
"city": "Ebertstad",
"countryAlpha2": "PT",
"bio": "pulse junkie, person 🇰🇷",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-48",
"createdAt": "2026-03-19T08:47:44.627Z"
}