example-data.com

people / #17

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/17"
)
people = res.json()
{
  "id": 17,
  "fullName": "Baron Kub",
  "firstName": "Baron",
  "lastName": "Kub",
  "email": "baron.kub-17@example.com",
  "phone": "(453) 712-4568",
  "occupation": "Forward Solutions Manager",
  "city": "Schowalterburgh",
  "countryAlpha2": "ET",
  "bio": "plastic advocate, grad",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-17",
  "createdAt": "2025-12-31T13:31:54.969Z"
}
Draftbit