example-data.com

people / #150

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/150"
)
people = res.json()
{
  "id": 150,
  "fullName": "Jovani Green",
  "firstName": "Jovani",
  "lastName": "Green",
  "email": "jovani.green-150@example.com",
  "phone": "(314) 286-1813",
  "occupation": "National Solutions Administrator",
  "city": "Pittsfield",
  "countryAlpha2": "AE",
  "bio": "engineer, business owner",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-150",
  "createdAt": "2026-03-18T21:35:00.331Z"
}
Draftbit