people
people
Page 2 of 9.
Overview
-
Brett Carter
jet advocate, philosopher ✌️
-
Darion Reynolds-Nolan
patriot, musician, leader 🔙
-
Wilburn Thompson
mantua lover 🇶🇦
-
Amir Marquardt
trench enthusiast 🔽
-
Bruce Waelchi
tabletop supporter 👏🏼
-
Marcus Senger
bookcase devotee 🎇
-
Vern Wunsch
designer, educator, person 🇸🇩
-
Jameson Rolfson
bonnet enthusiast, model 🎣
-
Giles Beer
person, photographer, musician
-
Murl Rowe
swim advocate
-
Joannie Volkman
hydrocarbon devotee, traveler
-
Jody Corwin
teacher, entrepreneur
-
Tyrese Hirthe
creator, dreamer
-
Elody Tromp
grad
-
Retta Hirthe-Rutherford
grad
-
Clarabelle Kunze
model
-
Willie Rogahn
dead supporter
-
Griffin Williamson-Armstrong
pine junkie
-
Annamarie Corwin
tributary lover
-
Clotilde Lynch-Zulauf
writer, activist
-
Evert Bailey
alb enthusiast
-
Claudia Rosenbaum-Wilderman
wasabi advocate
-
Bryce Hansen
person, author, creator 🇸🇭
-
Eden Greenholt
pulse junkie, person 🇰🇷
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person, ListEnvelope } from "./types/people";
const res = await fetch(
"https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Person>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 25,
"fullName": "Brett Carter",
"firstName": "Brett",
"lastName": "Carter",
"email": "brett.carter-25@example.com",
"phone": "+1 202-555-0124 ext 1",
"occupation": "Chief Division Consultant",
"city": "North Zachariah",
"countryAlpha2": "GB",
"bio": "jet advocate, philosopher ✌️",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-25",
"createdAt": "2024-01-28T18:47:59.344Z"
},
{
"id": 26,
"fullName": "Darion Reynolds-Nolan",
"firstName": "Darion",
"lastName": "Reynolds-Nolan",
"email": "darion.reynoldsnolan-26@example.com",
"phone": "+1 202-555-0125 ext 1",
"occupation": "Direct Brand Producer",
"city": "South Demetrius",
"countryAlpha2": "NZ",
"bio": "patriot, musician, leader 🔙",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-26",
"createdAt": "2023-09-08T09:18:21.557Z"
},
{
"id": 27,
"fullName": "Wilburn Thompson",
"firstName": "Wilburn",
"lastName": "Thompson",
"email": "wilburn.thompson-27@example.com",
"phone": "+1 202-555-0126 ext 1",
"occupation": "Investor Metrics Assistant",
"city": "East Guiseppeland",
"countryAlpha2": "NZ",
"bio": "mantua lover 🇶🇦",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-27",
"createdAt": "2025-11-09T20:22:38.092Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/people?page=2&limit=24",
"first": "/api/v1/people?page=1&limit=24",
"last": "/api/v1/people?page=9&limit=24",
"next": "/api/v1/people?page=3&limit=24",
"prev": "/api/v1/people?page=1&limit=24"
}
}