example-data.com

people / #31

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/31"
)
people = res.json()
{
  "id": 31,
  "fullName": "Vern Wunsch",
  "firstName": "Vern",
  "lastName": "Wunsch",
  "email": "vern.wunsch-31@example.com",
  "phone": "(774) 224-8199",
  "occupation": "Customer Optimization Architect",
  "city": "Fort Tyrese",
  "countryAlpha2": "BR",
  "bio": "designer, educator, person 🇸🇩",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-31",
  "createdAt": "2024-05-08T18:03:58.172Z"
}
Draftbit