Ricardo Conn
coach, photographer, parent
- Phone
- (589) 958-7500
people / #1
coach, photographer, parent
curl -sS \
"https://example-data.com/api/v1/people/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/people/1"
);
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/1"
);
const people = (await res.json()) as People;import requests
res = requests.get(
"https://example-data.com/api/v1/people/1"
)
people = res.json() {
"id": 1,
"fullName": "Ricardo Conn",
"firstName": "Ricardo",
"lastName": "Conn",
"email": "ricardo.conn-1@example.com",
"phone": "(589) 958-7500",
"occupation": "Dynamic Configuration Technician",
"city": "North Crystelborough",
"countryAlpha2": "IL",
"bio": "coach, photographer, parent",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-1",
"createdAt": "2025-12-07T03:26:56.541Z"
}