example-data.com

people / #23

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/23"
)
people = res.json()
{
  "id": 23,
  "fullName": "Korey Stark",
  "firstName": "Korey",
  "lastName": "Stark",
  "email": "korey.stark-23@example.com",
  "phone": "(210) 471-5017",
  "occupation": "Forward Research Associate",
  "city": "Euless",
  "countryAlpha2": "NZ",
  "bio": "musician, founder",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-23",
  "createdAt": "2026-04-04T01:47:41.429Z"
}
Draftbit