people
people
Page 4 of 9.
Overview
-
Sister Waelchi
geek, coach
-
Aurore Dach
embossing advocate, singer 🙆🏻♂️
-
Zackery Hermiston
straw enthusiast
-
Evan Torphy
artist, person, activist 🥋
-
Una Schroeder
founder, leader, designer 🤌🏿
-
Annamae Greenholt
blogger, nerd, scientist
-
Rubye Franey
freckle supporter
-
Ernestine Hintz
sustenance advocate 🤛🏼
-
Schuyler Pfeffer
department supporter
-
Phyllis Grimes
musician, author, activist 🧱
-
Emory Lowe
veteran, photographer, teacher 🧂
-
Jason Lemke
streamer, public speaker, dreamer 💿
-
Turner Bartell
student, blogger, scientist 👩🚀
-
Quentin Grant-Kemmer
teacher, photographer, scientist 🍅
-
Torey Leuschke
hunger junkie, gamer 👧🏻
-
Jaylan Rosenbaum
someplace lover
-
Nicolas Cummings
shadowbox advocate, nerd
-
Hilario Bednar
film lover, founder
-
Eloisa Wolf-Torp
abacus supporter ⛪
-
Darlene Aufderhar
veteran, singer
-
Tevin Rath
interviewer devotee, geek ☂️
-
Clovis Russel
educator
-
Jensen Greenholt
window fan
-
Jeanie Heidenreich
business owner, photographer, creator 🤲🏽
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": 73,
"fullName": "Sister Waelchi",
"firstName": "Sister",
"lastName": "Waelchi",
"email": "sister.waelchi-73@example.com",
"phone": "+1 202-555-0172 ext 1",
"occupation": "Senior Response Engineer",
"city": "Port Hailey",
"countryAlpha2": "SG",
"bio": "geek, coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-73",
"createdAt": "2023-10-05T03:22:44.015Z"
},
{
"id": 74,
"fullName": "Aurore Dach",
"firstName": "Aurore",
"lastName": "Dach",
"email": "aurore.dach-74@example.com",
"phone": "+1 202-555-0173 ext 1",
"occupation": "Senior Data Producer",
"city": "Ferminville",
"countryAlpha2": "CH",
"bio": "embossing advocate, singer 🙆🏻♂️",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-74",
"createdAt": "2023-11-19T06:28:31.942Z"
},
{
"id": 75,
"fullName": "Zackery Hermiston",
"firstName": "Zackery",
"lastName": "Hermiston",
"email": "zackery.hermiston-75@example.com",
"phone": "+1 202-555-0174 ext 1",
"occupation": "Customer Security Engineer",
"city": "Port Elaina",
"countryAlpha2": "IT",
"bio": "straw enthusiast",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-75",
"createdAt": "2022-04-10T14:57:05.520Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/people?page=4&limit=24",
"first": "/api/v1/people?page=1&limit=24",
"last": "/api/v1/people?page=9&limit=24",
"next": "/api/v1/people?page=5&limit=24",
"prev": "/api/v1/people?page=3&limit=24"
}
}