example-data.com

people / #154

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/154"
)
people = res.json()
{
  "id": 154,
  "fullName": "Arnulfo Leannon",
  "firstName": "Arnulfo",
  "lastName": "Leannon",
  "email": "arnulfo.leannon-154@example.com",
  "phone": "(264) 823-6977",
  "occupation": "Human Security Coordinator",
  "city": "North Felipe",
  "countryAlpha2": "AR",
  "bio": "loaf advocate  🇰🇲",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-154",
  "createdAt": "2025-05-24T08:14:50.070Z"
}
Draftbit