people
people
Page 3 of 9.
Overview
-
Arthur Ruecker
self-confidence enthusiast, nerd 📅
-
Lillie Sawayn
photographer, developer, designer 😫
-
Shanie Kuhic
person
-
Johnnie Prosacco
director devotee, scientist 🧬
-
Mavis Balistreri
coach
-
Camden Pouros
educator, gamer, philosopher 🇷🇴
-
Celia Lueilwitz
engineer
-
Vito Glover
person
-
Delores Robel
blogger, photographer, entrepreneur 🧠
-
Haylie Cruickshank
louse enthusiast 🐐
-
Clare Konopelski
wear supporter ☝🏽
-
Baylee Schumm
artist, veteran, creator 👨🦳
-
Ottilie Jenkins
scientist
-
Willa Ullrich-D'Amore
philosopher, photographer
-
Carroll Hayes
final advocate, activist
-
Ava Orn
singer
-
Margie Romaguera
detective lover, inventor 🎒
-
Johnpaul Abbott
vein junkie 🥍
-
Karlie Weber
thigh junkie 📓
-
Madelyn Romaguera
duster enthusiast
-
Phyllis Keeling
geek
-
Cyril Ryan
filmmaker, singer, scientist
-
Chauncey Runolfsdottir
hovel lover 🛍️
-
Savanna Powlowski
doubter lover, engineer
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": 49,
"fullName": "Arthur Ruecker",
"firstName": "Arthur",
"lastName": "Ruecker",
"email": "arthur.ruecker-49@example.com",
"phone": "+1 202-555-0148 ext 1",
"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": "+1 202-555-0149 ext 1",
"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": "+1 202-555-0150 ext 1",
"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&limit=24",
"first": "/api/v1/people?page=1&limit=24",
"last": "/api/v1/people?page=9&limit=24",
"next": "/api/v1/people?page=4&limit=24",
"prev": "/api/v1/people?page=2&limit=24"
}
}