example-data.com

people / #160

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/160"
)
people = res.json()
{
  "id": 160,
  "fullName": "Palma Rice-Runolfsson",
  "firstName": "Palma",
  "lastName": "Rice-Runolfsson",
  "email": "palma.ricerunolfsson-160@example.com",
  "phone": "(987) 977-3495",
  "occupation": "Product Infrastructure Assistant",
  "city": "South Keenan",
  "countryAlpha2": "NZ",
  "bio": "activist, coach, author 👨🏿‍🚀",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-160",
  "createdAt": "2025-07-31T11:47:40.427Z"
}
Draftbit