example-data.com

people

people

Page 4 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": 73,
      "fullName": "Sister Waelchi",
      "firstName": "Sister",
      "lastName": "Waelchi",
      "email": "sister.waelchi-73@example.com",
      "phone": "(397) 482-0166",
      "occupation": "Senior Response Engineer",
      "city": "Port Hailey",
      "countryAlpha2": "SG",
      "bio": "geek, coach",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-73",
      "createdAt": "2023-10-05T03:22:44.015Z"
    },
    {
      "id": 74,
      "fullName": "Aurore Dach",
      "firstName": "Aurore",
      "lastName": "Dach",
      "email": "aurore.dach-74@example.com",
      "phone": "(892) 265-0712",
      "occupation": "Senior Data Producer",
      "city": "Ferminville",
      "countryAlpha2": "CH",
      "bio": "embossing advocate, singer 🙆🏻‍♂️",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-74",
      "createdAt": "2023-11-19T06:28:31.942Z"
    },
    {
      "id": 75,
      "fullName": "Zackery Hermiston",
      "firstName": "Zackery",
      "lastName": "Hermiston",
      "email": "zackery.hermiston-75@example.com",
      "phone": "(796) 635-1437",
      "occupation": "Customer Security Engineer",
      "city": "Port Elaina",
      "countryAlpha2": "IT",
      "bio": "straw enthusiast",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-75",
      "createdAt": "2022-04-10T14:57:05.520Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=4",
    "next": "/api/v1/people?page=5",
    "prev": "/api/v1/people?page=3"
  }
}
Draftbit