example-data.com

people / #81

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/81"
)
people = res.json()
{
  "id": 81,
  "fullName": "Schuyler Pfeffer",
  "firstName": "Schuyler",
  "lastName": "Pfeffer",
  "email": "schuyler.pfeffer-81@example.com",
  "phone": "(513) 820-8724",
  "occupation": "Regional Intranet Designer",
  "city": "Roswell",
  "countryAlpha2": "IL",
  "bio": "department supporter",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-81",
  "createdAt": "2024-07-05T00:52:41.862Z"
}
Draftbit