example-data.com

people

people

Page 6 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": 121,
      "fullName": "Noble Pfeffer",
      "firstName": "Noble",
      "lastName": "Pfeffer",
      "email": "noble.pfeffer-121@example.com",
      "phone": "(756) 429-0385",
      "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": "(272) 788-4248",
      "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": "(759) 812-7287",
      "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",
    "next": "/api/v1/people?page=7",
    "prev": "/api/v1/people?page=5"
  }
}
Draftbit