example-data.com

people / #13

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/13"
)
people = res.json()
{
  "id": 13,
  "fullName": "Joanne Jerde",
  "firstName": "Joanne",
  "lastName": "Jerde",
  "email": "joanne.jerde-13@example.com",
  "phone": "(244) 783-5553",
  "occupation": "Lead Mobility Officer",
  "city": "Brownfurt",
  "countryAlpha2": "MY",
  "bio": "public speaker, teacher, grad 🇨🇭",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-13",
  "createdAt": "2025-02-03T05:44:39.068Z"
}
Draftbit