people
people
Page 3 of 9.
-
Arthur Ruecker
-
Lillie Sawayn
-
Shanie Kuhic
-
Johnnie Prosacco
-
Mavis Balistreri
-
Camden Pouros
-
Celia Lueilwitz
-
Vito Glover
-
Delores Robel
-
Haylie Cruickshank
-
Clare Konopelski
-
Baylee Schumm
-
Ottilie Jenkins
-
Willa Ullrich-D'Amore
-
Carroll Hayes
-
Ava Orn
-
Margie Romaguera
-
Johnpaul Abbott
-
Karlie Weber
-
Madelyn Romaguera
-
Phyllis Keeling
-
Cyril Ryan
-
Chauncey Runolfsdottir
-
Savanna Powlowski
-
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
Arthur Ruecker
self-confidence enthusiast, nerd 📅
- Phone
- (817) 213-6054
Lillie Sawayn
photographer, developer, designer 😫
- Phone
- (745) 546-8416
Shanie Kuhic
person
- Phone
- (864) 670-5783
Johnnie Prosacco
director devotee, scientist 🧬
- Phone
- (757) 547-4168
Mavis Balistreri
coach
- Phone
- (508) 526-8777
Camden Pouros
educator, gamer, philosopher 🇷🇴
- Phone
- (642) 991-2268
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": 49,
"fullName": "Arthur Ruecker",
"firstName": "Arthur",
"lastName": "Ruecker",
"email": "arthur.ruecker-49@example.com",
"phone": "(817) 213-6054",
"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": "(745) 546-8416",
"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": "(864) 670-5783",
"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",
"next": "/api/v1/people?page=4",
"prev": "/api/v1/people?page=2"
}
}