example-data.com

people / #137

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/137"
)
people = res.json()
{
  "id": 137,
  "fullName": "Gerald Mayer",
  "firstName": "Gerald",
  "lastName": "Mayer",
  "email": "gerald.mayer-137@example.com",
  "phone": "(832) 545-5023",
  "occupation": "Regional Brand Consultant",
  "city": "Bothell",
  "countryAlpha2": "DE",
  "bio": "public speaker, inventor, inventor",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-137",
  "createdAt": "2025-07-07T15:03:37.564Z"
}
Draftbit