example-data.com

people / #113

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/113"
)
people = res.json()
{
  "id": 113,
  "fullName": "Kailey Buckridge",
  "firstName": "Kailey",
  "lastName": "Buckridge",
  "email": "kailey.buckridge-113@example.com",
  "phone": "(903) 460-8602",
  "occupation": "Forward Operations Consultant",
  "city": "Rancho Santa Margarita",
  "countryAlpha2": "NZ",
  "bio": "grandson devotee",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-113",
  "createdAt": "2022-08-11T02:43:08.136Z"
}
Draftbit