example-data.com

people / #73

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/73"
)
people = res.json()
{
  "id": 73,
  "fullName": "Sister Waelchi",
  "firstName": "Sister",
  "lastName": "Waelchi",
  "email": "sister.waelchi-73@example.com",
  "phone": "(397) 482-0166",
  "occupation": "Senior Response Engineer",
  "city": "Port Hailey",
  "countryAlpha2": "SG",
  "bio": "geek, coach",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-73",
  "createdAt": "2023-10-05T03:22:44.015Z"
}
Draftbit