example-data.com
Menu
Browse docs and collections

Overview

people / #1

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/people/1" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/people/1"
);
const person = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person } from "./types/people";

const res = await fetch(
  "https://example-data.com/api/v1/people/1"
);
const person = (await res.json()) as Person;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/people/1"
)
people = res.json()

Response

{
  "id": 1,
  "fullName": "Ricardo Conn",
  "firstName": "Ricardo",
  "lastName": "Conn",
  "email": "ricardo.conn-1@example.com",
  "phone": "+1 202-555-0100 ext 1",
  "occupation": "Dynamic Configuration Technician",
  "city": "North Crystelborough",
  "countryAlpha2": "IL",
  "bio": "coach, photographer, parent",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-1",
  "createdAt": "2025-12-07T03:26:56.541Z"
}