people
people
Page 6 of 9.
-
Noble Pfeffer
-
Gerda Olson
-
Quentin Gutkowski
-
Kristoffer Hayes
-
Guido Ebert
-
Cleo Roob
-
Bradley Beier
-
Fabian Vandervort
-
Reyna Keebler
-
Anastacio Huels-Ledner
-
Jarrell Stehr
-
Aimee Little
-
Torey Ebert
-
Lyda Reichert
-
Shad Murphy
-
Tad Mann
-
Gerald Mayer
-
Chris Wuckert
-
Izaiah Tremblay
-
Coralie Feil
-
Beulah Donnelly
-
Corrine Abshire-Smith
-
Oda Abshire
-
Freida Schulist
-
Noble Pfeffer
coach
-
Gerda Olson
dreamer, engineer
-
Quentin Gutkowski
model
-
Kristoffer Hayes
bend devotee
-
Guido Ebert
writer, foodie
-
Cleo Roob
activist, geek, musician
-
Bradley Beier
foodie, parent
-
Fabian Vandervort
fisherman fan, public speaker 🤲🏾
-
Reyna Keebler
jump junkie, foodie 🧹
-
Anastacio Huels-Ledner
singer, friend
-
Jarrell Stehr
hawk lover 🙍🏾♂️
-
Aimee Little
tomb supporter 🔠
-
Torey Ebert
linseed devotee, philosopher 🖖🏿
-
Lyda Reichert
friend
-
Shad Murphy
kettledrum devotee 🈵
-
Tad Mann
hexagon fan, writer 🕋
-
Gerald Mayer
public speaker, inventor, inventor
-
Chris Wuckert
person, musician, foodie 🕳️
-
Izaiah Tremblay
dreamer, scientist, writer 😘
-
Coralie Feil
hovercraft supporter
-
Beulah Donnelly
confusion fan, nerd
-
Corrine Abshire-Smith
activist, environmentalist, environmentalist 👐🏻
-
Oda Abshire
coach, streamer
-
Freida Schulist
business owner, filmmaker, person 🇮🇶
Noble Pfeffer
coach
- Phone
- (756) 429-0385
Gerda Olson
dreamer, engineer
- Phone
- (272) 788-4248
Quentin Gutkowski
model
- Phone
- (759) 812-7287
Kristoffer Hayes
bend devotee
- Phone
- (371) 231-6028
Guido Ebert
writer, foodie
- Phone
- (208) 703-2114
Cleo Roob
activist, geek, musician
- Phone
- (734) 748-9032
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": 121,
"fullName": "Noble Pfeffer",
"firstName": "Noble",
"lastName": "Pfeffer",
"email": "noble.pfeffer-121@example.com",
"phone": "(756) 429-0385",
"occupation": "Dynamic Communications Supervisor",
"city": "Whiteville",
"countryAlpha2": "ES",
"bio": "coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-121",
"createdAt": "2025-07-20T11:52:03.715Z"
},
{
"id": 122,
"fullName": "Gerda Olson",
"firstName": "Gerda",
"lastName": "Olson",
"email": "gerda.olson-122@example.com",
"phone": "(272) 788-4248",
"occupation": "Chief Data Orchestrator",
"city": "Lake Micahburgh",
"countryAlpha2": "FR",
"bio": "dreamer, engineer",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-122",
"createdAt": "2023-10-04T09:02:36.661Z"
},
{
"id": 123,
"fullName": "Quentin Gutkowski",
"firstName": "Quentin",
"lastName": "Gutkowski",
"email": "quentin.gutkowski-123@example.com",
"phone": "(759) 812-7287",
"occupation": "Central Configuration Associate",
"city": "Lake Bernice",
"countryAlpha2": "NZ",
"bio": "model",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-123",
"createdAt": "2025-01-06T01:53:39.473Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/people?page=6",
"next": "/api/v1/people?page=7",
"prev": "/api/v1/people?page=5"
}
}