example-data.com

people / #85

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/85"
)
people = res.json()
{
  "id": 85,
  "fullName": "Turner Bartell",
  "firstName": "Turner",
  "lastName": "Bartell",
  "email": "turner.bartell-85@example.com",
  "phone": "(516) 785-4899",
  "occupation": "Chief Web Consultant",
  "city": "New Maudie",
  "countryAlpha2": "IS",
  "bio": "student, blogger, scientist 👩‍🚀",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-85",
  "createdAt": "2026-01-03T13:19:57.962Z"
}
Draftbit