example-data.com

people

people

Page 2 of 9.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/people?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = await res.json();
import type { People, ListEnvelope } from "https://example-data.com/types/people.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/people",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "fullName": "Brett Carter",
      "firstName": "Brett",
      "lastName": "Carter",
      "email": "brett.carter-25@example.com",
      "phone": "(424) 689-2611",
      "occupation": "Chief Division Consultant",
      "city": "North Zachariah",
      "countryAlpha2": "GB",
      "bio": "jet advocate, philosopher ✌️",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-25",
      "createdAt": "2024-01-28T18:47:59.344Z"
    },
    {
      "id": 26,
      "fullName": "Darion Reynolds-Nolan",
      "firstName": "Darion",
      "lastName": "Reynolds-Nolan",
      "email": "darion.reynoldsnolan-26@example.com",
      "phone": "(874) 874-4947",
      "occupation": "Direct Brand Producer",
      "city": "South Demetrius",
      "countryAlpha2": "NZ",
      "bio": "patriot, musician, leader 🔙",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-26",
      "createdAt": "2023-09-08T09:18:21.557Z"
    },
    {
      "id": 27,
      "fullName": "Wilburn Thompson",
      "firstName": "Wilburn",
      "lastName": "Thompson",
      "email": "wilburn.thompson-27@example.com",
      "phone": "(273) 206-0315",
      "occupation": "Investor Metrics Assistant",
      "city": "East Guiseppeland",
      "countryAlpha2": "NZ",
      "bio": "mantua lover  🇶🇦",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-27",
      "createdAt": "2025-11-09T20:22:38.092Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=2",
    "next": "/api/v1/people?page=3",
    "prev": "/api/v1/people?page=1"
  }
}
Draftbit