example-data.com

people / #186

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/186"
)
people = res.json()
{
  "id": 186,
  "fullName": "Eudora Glover-Watsica",
  "firstName": "Eudora",
  "lastName": "Glover-Watsica",
  "email": "eudora.gloverwatsica-186@example.com",
  "phone": "(481) 506-2424",
  "occupation": "Legacy Quality Executive",
  "city": "Monterey Park",
  "countryAlpha2": "IN",
  "bio": "slime supporter, friend 🌞",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-186",
  "createdAt": "2025-02-02T03:57:38.182Z"
}
Draftbit