example-data.com

people / #74

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/74"
)
people = res.json()
{
  "id": 74,
  "fullName": "Aurore Dach",
  "firstName": "Aurore",
  "lastName": "Dach",
  "email": "aurore.dach-74@example.com",
  "phone": "(892) 265-0712",
  "occupation": "Senior Data Producer",
  "city": "Ferminville",
  "countryAlpha2": "CH",
  "bio": "embossing advocate, singer 🙆🏻‍♂️",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-74",
  "createdAt": "2023-11-19T06:28:31.942Z"
}
Draftbit