example-data.com

people / #4

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/4"
)
people = res.json()
{
  "id": 4,
  "fullName": "Gardner Olson",
  "firstName": "Gardner",
  "lastName": "Olson",
  "email": "gardner.olson-4@example.com",
  "phone": "(615) 922-9088",
  "occupation": "Forward Solutions Engineer",
  "city": "East Joel",
  "countryAlpha2": "FR",
  "bio": "husband lover  🕰️",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-4",
  "createdAt": "2023-04-20T10:37:24.801Z"
}
Draftbit