example-data.com

people / #176

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/176"
)
people = res.json()
{
  "id": 176,
  "fullName": "Verlie Boyer",
  "firstName": "Verlie",
  "lastName": "Boyer",
  "email": "verlie.boyer-176@example.com",
  "phone": "(961) 225-3099",
  "occupation": "Dynamic Research Coordinator",
  "city": "Port Jaidenview",
  "countryAlpha2": "FI",
  "bio": "film lover",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-176",
  "createdAt": "2022-09-25T11:26:22.466Z"
}
Draftbit