example-data.com

people / #182

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/182"
)
people = res.json()
{
  "id": 182,
  "fullName": "Monty Kiehn",
  "firstName": "Monty",
  "lastName": "Kiehn",
  "email": "monty.kiehn-182@example.com",
  "phone": "(435) 590-1253",
  "occupation": "Forward Branding Director",
  "city": "New Bedford",
  "countryAlpha2": "AT",
  "bio": "exasperation supporter, blogger",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-182",
  "createdAt": "2026-02-20T13:08:04.741Z"
}
Draftbit