example-data.com

people

people

Page 7 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": 145,
      "fullName": "Velda Denesik",
      "firstName": "Velda",
      "lastName": "Denesik",
      "email": "velda.denesik-145@example.com",
      "phone": "(553) 664-9985",
      "occupation": "Investor Creative Planner",
      "city": "East Albertcester",
      "countryAlpha2": "NG",
      "bio": "veteran, model, educator 🇩🇿",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-145",
      "createdAt": "2023-05-22T17:28:54.920Z"
    },
    {
      "id": 146,
      "fullName": "Urban Stark",
      "firstName": "Urban",
      "lastName": "Stark",
      "email": "urban.stark-146@example.com",
      "phone": "(975) 275-3090",
      "occupation": "Principal Operations Director",
      "city": "Veumfort",
      "countryAlpha2": "FR",
      "bio": "scholarship fan, singer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-146",
      "createdAt": "2023-09-16T15:07:25.395Z"
    },
    {
      "id": 147,
      "fullName": "Sadye Langosh",
      "firstName": "Sadye",
      "lastName": "Langosh",
      "email": "sadye.langosh-147@example.com",
      "phone": "(519) 402-4041",
      "occupation": "Human Interactions Engineer",
      "city": "Brownsville",
      "countryAlpha2": "FR",
      "bio": "dreamer, musician, engineer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-147",
      "createdAt": "2026-01-24T07:35:46.602Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=7",
    "next": "/api/v1/people?page=8",
    "prev": "/api/v1/people?page=6"
  }
}
Draftbit