users
users
Page 8 of 11.
Overview
-
Alexander Beahan
@alexander.beahan57
smoke supporter, parent
-
Kamryn Rogahn
@kamryn_rogahn40
spear enthusiast, business owner
-
Kaleb Schmidt
@kaleb.schmidt
doorpost fan, entrepreneur
-
Daisy Kuhic
@daisy_kuhic24
seafood lover, blogger 🎨
-
Aylin Sanford
@aylin.sanford
goat devotee, singer 🖖🏻
-
Perry Kerluke
@perry_kerluke83
slipper devotee, environmentalist 🌵
-
Elvis Littel-Vandervort
@elvis.littel-vandervort28
teriyaki lover, filmmaker
-
Fatima Dicki
@fatima_dicki
granny enthusiast, author 👃🏼
-
Americo Hoppe
@americo_hoppe57
coach, leader
-
Ismael Ward
@ismael_ward
film lover, educator
-
Gerald Lind
@gerald_lind57
philosopher, entrepreneur, gamer 🍃
-
Lamont Schroeder
@lamont.schroeder89
statue advocate, environmentalist
-
Lazaro Herzog
@lazaro_herzog
nucleotidase junkie 👱🏼
-
Cyril Frami
@cyril_frami88
parent
-
Minerva Hettinger
@minerva_hettinger
stir-fry advocate, foodie
-
General Morissette
@general_morissette47
concentration advocate, entrepreneur
-
Van Crona
@van_crona
cheetah enthusiast
-
Sammy Schmidt
@sammy.schmidt
parent, activist, traveler
-
Hilda Crooks
@hilda_crooks61
freezing enthusiast 🔼
-
D'angelo Kling
@dangelo_kling6
mom supporter
-
Oran Torphy
@oran_torphy
validity junkie, patriot 🙅🏾♀️
-
Wilton Dietrich
@wilton.dietrich23
inventor, singer, activist
-
Rosemary Krajcik
@rosemary_krajcik
lashes enthusiast 🐡
-
Lavonne Schmidt
@lavonne.schmidt95
foodie, author
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User, ListEnvelope } from "./types/users";
const res = await fetch(
"https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<User>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 169,
"firstName": "Alexander",
"lastName": "Beahan",
"fullName": "Alexander Beahan",
"username": "alexander.beahan57",
"email": "alexander.beahan57@example.com",
"phone": "+1 202-555-0168 ext 2",
"bio": "smoke supporter, parent",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-169",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-169&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-169/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-12-06T17:30:33.469Z",
"updatedAt": "2026-03-30T06:11:13.098Z"
},
{
"id": 170,
"firstName": "Kamryn",
"lastName": "Rogahn",
"fullName": "Kamryn Rogahn",
"username": "kamryn_rogahn40",
"email": "kamryn_rogahn40@example.com",
"phone": "+1 202-555-0169 ext 2",
"bio": "spear enthusiast, business owner",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-170",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-170&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-170/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-01-06T23:30:44.271Z",
"updatedAt": "2025-03-03T00:37:45.003Z"
},
{
"id": 171,
"firstName": "Kaleb",
"lastName": "Schmidt",
"fullName": "Kaleb Schmidt",
"username": "kaleb.schmidt",
"email": "kaleb.schmidt@example.com",
"phone": "+1 202-555-0170 ext 2",
"bio": "doorpost fan, entrepreneur",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-171",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-171&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-171/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-05-19T00:15:36.797Z",
"updatedAt": "2026-05-21T14:35:08.331Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/users?page=8&limit=24",
"first": "/api/v1/users?page=1&limit=24",
"last": "/api/v1/users?page=11&limit=24",
"next": "/api/v1/users?page=9&limit=24",
"prev": "/api/v1/users?page=7&limit=24"
}
}