example-data.com

people / #200

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/200"
)
people = res.json()
{
  "id": 200,
  "fullName": "Alva Funk",
  "firstName": "Alva",
  "lastName": "Funk",
  "email": "alva.funk-200@example.com",
  "phone": "(949) 691-1843",
  "occupation": "Dynamic Integration Engineer",
  "city": "Runolfssonton",
  "countryAlpha2": "CL",
  "bio": "author, streamer",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-200",
  "createdAt": "2023-12-03T02:14:05.953Z"
}
Draftbit