Johnnie Prosacco
director devotee, scientist 🧬
- Phone
- (757) 547-4168
people / #52
director devotee, scientist 🧬
curl -sS \
"https://example-data.com/api/v1/people/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/52"
);
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/52"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/52"
)
people = res.json() {
"id": 52,
"fullName": "Johnnie Prosacco",
"firstName": "Johnnie",
"lastName": "Prosacco",
"email": "johnnie.prosacco-52@example.com",
"phone": "(757) 547-4168",
"occupation": "International Metrics Consultant",
"city": "Sengerstead",
"countryAlpha2": "US",
"bio": "director devotee, scientist 🧬",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-52",
"createdAt": "2025-03-14T01:39:59.485Z"
}