example-data.com
Menu
Browse docs and collections

people

people

Page 6 of 9.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/people?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/people";

const res = await fetch(
  "https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Person>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/people",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 121,
      "fullName": "Noble Pfeffer",
      "firstName": "Noble",
      "lastName": "Pfeffer",
      "email": "noble.pfeffer-121@example.com",
      "phone": "+1 202-555-0120 ext 2",
      "occupation": "Dynamic Communications Supervisor",
      "city": "Whiteville",
      "countryAlpha2": "ES",
      "bio": "coach",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-121",
      "createdAt": "2025-07-20T11:52:03.715Z"
    },
    {
      "id": 122,
      "fullName": "Gerda Olson",
      "firstName": "Gerda",
      "lastName": "Olson",
      "email": "gerda.olson-122@example.com",
      "phone": "+1 202-555-0121 ext 2",
      "occupation": "Chief Data Orchestrator",
      "city": "Lake Micahburgh",
      "countryAlpha2": "FR",
      "bio": "dreamer, engineer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-122",
      "createdAt": "2023-10-04T09:02:36.661Z"
    },
    {
      "id": 123,
      "fullName": "Quentin Gutkowski",
      "firstName": "Quentin",
      "lastName": "Gutkowski",
      "email": "quentin.gutkowski-123@example.com",
      "phone": "+1 202-555-0122 ext 2",
      "occupation": "Central Configuration Associate",
      "city": "Lake Bernice",
      "countryAlpha2": "NZ",
      "bio": "model",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-123",
      "createdAt": "2025-01-06T01:53:39.473Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=6&limit=24",
    "first": "/api/v1/people?page=1&limit=24",
    "last": "/api/v1/people?page=9&limit=24",
    "next": "/api/v1/people?page=7&limit=24",
    "prev": "/api/v1/people?page=5&limit=24"
  }
}