example-data.com

people

people

Page 8 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": 169,
      "fullName": "Elouise Huels",
      "firstName": "Elouise",
      "lastName": "Huels",
      "email": "elouise.huels-169@example.com",
      "phone": "(986) 954-7166",
      "occupation": "Investor Accountability Designer",
      "city": "New Enola",
      "countryAlpha2": "IL",
      "bio": "veteran, creator, veteran 🎟️",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-169",
      "createdAt": "2024-05-16T06:05:17.606Z"
    },
    {
      "id": 170,
      "fullName": "Bryce Schuster",
      "firstName": "Bryce",
      "lastName": "Schuster",
      "email": "bryce.schuster-170@example.com",
      "phone": "(445) 518-0234",
      "occupation": "Corporate Metrics Agent",
      "city": "Lake Bernadineville",
      "countryAlpha2": "PE",
      "bio": "foodie, gamer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-170",
      "createdAt": "2023-02-16T08:51:56.036Z"
    },
    {
      "id": 171,
      "fullName": "Pietro Simonis",
      "firstName": "Pietro",
      "lastName": "Simonis",
      "email": "pietro.simonis-171@example.com",
      "phone": "(262) 839-8142",
      "occupation": "Dynamic Security Supervisor",
      "city": "New Mikel",
      "countryAlpha2": "AT",
      "bio": "simple junkie",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-171",
      "createdAt": "2022-06-27T09:34:44.401Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/people?page=8",
    "next": "/api/v1/people?page=9",
    "prev": "/api/v1/people?page=7"
  }
}
Draftbit