example-data.com

people / #11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/11"
)
people = res.json()
{
  "id": 11,
  "fullName": "Selena Bechtelar",
  "firstName": "Selena",
  "lastName": "Bechtelar",
  "email": "selena.bechtelar-11@example.com",
  "phone": "(822) 799-0360",
  "occupation": "Direct Configuration Officer",
  "city": "Willmstown",
  "countryAlpha2": "ET",
  "bio": "stir-fry lover  ◽",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-11",
  "createdAt": "2023-11-13T22:09:46.726Z"
}
Draftbit