example-data.com

people / #77

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/77"
)
people = res.json()
{
  "id": 77,
  "fullName": "Una Schroeder",
  "firstName": "Una",
  "lastName": "Schroeder",
  "email": "una.schroeder-77@example.com",
  "phone": "(219) 724-4028",
  "occupation": "Corporate Research Designer",
  "city": "Lake Chloe",
  "countryAlpha2": "IL",
  "bio": "founder, leader, designer 🤌🏿",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-77",
  "createdAt": "2025-07-21T23:45:16.353Z"
}
Draftbit