example-data.com

people / #111

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/111"
)
people = res.json()
{
  "id": 111,
  "fullName": "Emely Feeney",
  "firstName": "Emely",
  "lastName": "Feeney",
  "email": "emely.feeney-111@example.com",
  "phone": "(768) 450-6126",
  "occupation": "Investor Applications Director",
  "city": "East Maribel",
  "countryAlpha2": "GR",
  "bio": "streamer, designer, engineer",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-111",
  "createdAt": "2025-04-25T03:41:40.851Z"
}
Draftbit