example-data.com

people

people

Page 3 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": 49,
      "fullName": "Arthur Ruecker",
      "firstName": "Arthur",
      "lastName": "Ruecker",
      "email": "arthur.ruecker-49@example.com",
      "phone": "(817) 213-6054",
      "occupation": "Investor Research Liaison",
      "city": "Gloverworth",
      "countryAlpha2": "DK",
      "bio": "self-confidence enthusiast, nerd 📅",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-49",
      "createdAt": "2025-06-14T10:00:01.510Z"
    },
    {
      "id": 50,
      "fullName": "Lillie Sawayn",
      "firstName": "Lillie",
      "lastName": "Sawayn",
      "email": "lillie.sawayn-50@example.com",
      "phone": "(745) 546-8416",
      "occupation": "Regional Research Director",
      "city": "Stiedemannberg",
      "countryAlpha2": "KE",
      "bio": "photographer, developer, designer 😫",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-50",
      "createdAt": "2024-03-16T05:27:10.040Z"
    },
    {
      "id": 51,
      "fullName": "Shanie Kuhic",
      "firstName": "Shanie",
      "lastName": "Kuhic",
      "email": "shanie.kuhic-51@example.com",
      "phone": "(864) 670-5783",
      "occupation": "International Security Producer",
      "city": "Kundeton",
      "countryAlpha2": "AU",
      "bio": "person",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-51",
      "createdAt": "2023-06-01T17:16:08.397Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=3",
    "next": "/api/v1/people?page=4",
    "prev": "/api/v1/people?page=2"
  }
}
Draftbit