people
people
Page 8 of 9.
Overview
-
Elouise Huels
veteran, creator, veteran 🎟️
-
Bryce Schuster
foodie, gamer
-
Pietro Simonis
simple junkie
-
Napoleon Feest
filmmaker
-
Colby Gislason
goodwill devotee
-
Lurline Koelpin
pacemaker lover
-
Norene Stoltenberg
filmmaker, photographer
-
Verlie Boyer
film lover
-
Katlynn Kunde
ferret devotee
-
Angelica Greenholt
filmmaker, streamer
-
Deshaun Terry
coach, friend, parent 🇻🇪
-
Lucinda Shanahan-Bruen
luck lover, film lover 👽
-
Mohamed Dach
teacher
-
Monty Kiehn
exasperation supporter, blogger
-
Bill Green
engineer, environmentalist, scientist
-
Francisco Pollich
alert advocate
-
Liza Tremblay
photographer, friend
-
Eudora Glover-Watsica
slime supporter, friend 🌞
-
Judd Walter
bookend junkie, person 🥉
-
Melvina D'Amore
foodie, teacher
-
Carmel Cassin
grad, educator, public speaker 🐛
-
Yasmin Schulist
citizen devotee 🏤
-
Fern Ward
dandelion junkie, creator
-
Baylee Wiegand
final enthusiast, nerd
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": 169,
"fullName": "Elouise Huels",
"firstName": "Elouise",
"lastName": "Huels",
"email": "elouise.huels-169@example.com",
"phone": "+1 202-555-0168 ext 2",
"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": "+1 202-555-0169 ext 2",
"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": "+1 202-555-0170 ext 2",
"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&limit=24",
"first": "/api/v1/people?page=1&limit=24",
"last": "/api/v1/people?page=9&limit=24",
"next": "/api/v1/people?page=9&limit=24",
"prev": "/api/v1/people?page=7&limit=24"
}
}