example-data.com

people / #90

Component variants

curl -sS \
  "https://example-data.com/api/v1/people/90" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/people/90"
);
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/90"
);
const people = (await res.json()) as People;
import requests

res = requests.get(
    "https://example-data.com/api/v1/people/90"
)
people = res.json()
{
  "id": 90,
  "fullName": "Hilario Bednar",
  "firstName": "Hilario",
  "lastName": "Bednar",
  "email": "hilario.bednar-90@example.com",
  "phone": "(514) 847-3599",
  "occupation": "National Security Executive",
  "city": "Taliaboro",
  "countryAlpha2": "ID",
  "bio": "film lover, founder",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-90",
  "createdAt": "2026-01-04T10:03:50.375Z"
}
Draftbit