example-data.com

people / #44

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/44"
)
people = res.json()
{
  "id": 44,
  "fullName": "Clotilde Lynch-Zulauf",
  "firstName": "Clotilde",
  "lastName": "Lynch-Zulauf",
  "email": "clotilde.lynchzulauf-44@example.com",
  "phone": "(394) 363-7231",
  "occupation": "Product Creative Representative",
  "city": "West Alysa",
  "countryAlpha2": "ID",
  "bio": "writer, activist",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-44",
  "createdAt": "2025-04-05T01:32:33.110Z"
}
Draftbit