example-data.com

people / #105

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/people/105"
)
people = res.json()
{
  "id": 105,
  "fullName": "Anissa Conn",
  "firstName": "Anissa",
  "lastName": "Conn",
  "email": "anissa.conn-105@example.com",
  "phone": "(240) 333-9223",
  "occupation": "Forward Applications Developer",
  "city": "South Vesta",
  "countryAlpha2": "PT",
  "bio": "traveler, friend, dreamer",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-105",
  "createdAt": "2023-04-01T13:36:47.025Z"
}
Draftbit