users
users
Page 7 of 11.
Overview
-
Tillman Breitenberg
@tillman_breitenberg54
chow junkie, coach 🏀
-
Jacynthe Sawayn
@jacynthe_sawayn71
knickers lover
-
Hershel Smitham
@hershel.smitham
film lover, coach, environmentalist
-
Douglas Frami
@douglas.frami
fat enthusiast, artist
-
Rickie Sporer
@rickie.sporer50
platypus advocate, model 🧑🏿💻
-
Jonathan Howe
@jonathan_howe77
film lover, filmmaker
-
Wiley Rodriguez
@wiley.rodriguez19
hydrolyse advocate 🎿
-
Orrin Grant
@orrin.grant42
electronics fan, filmmaker 🛗
-
Sheridan Turcotte
@sheridan.turcotte
founder, engineer, musician 👧🏽
-
Brad Wisoky
@brad.wisoky41
possession fan, leader ▶️
-
Adan Weber
@adan.weber61
inventor
-
Carmel Schultz
@carmel.schultz
perfection advocate, dreamer ☂️
-
Sandrine Osinski
@sandrine.osinski
photographer, patriot
-
Nikolas Wolf
@nikolas.wolf
streamer, traveler
-
Amparo Dietrich
@amparo.dietrich
monocle devotee
-
Marlin Goldner
@marlin_goldner6
brochure fan
-
Brock Hackett
@brock.hackett
educator
-
Roberta Mueller-Yundt
@roberta_mueller-yundt
interviewer fan, dreamer 🇰🇾
-
Alex Lang
@alex_lang85
verve devotee, author 🕊️
-
Clementine Nicolas
@clementine_nicolas
environmentalist, activist, filmmaker 💣
-
Cindy Barrows
@cindy_barrows20
foodie
-
Talon Turner
@talon.turner59
philosopher, student
-
Ari Howe
@ari.howe73
intervention lover, model
-
Vincenza Zemlak-Collier
@vincenza_zemlak-collier
programme devotee, foodie
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": 145,
"firstName": "Tillman",
"lastName": "Breitenberg",
"fullName": "Tillman Breitenberg",
"username": "tillman_breitenberg54",
"email": "tillman_breitenberg54@example.com",
"phone": "+1 202-555-0144 ext 2",
"bio": "chow junkie, coach 🏀",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-145/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-03-30T22:43:49.261Z",
"updatedAt": "2026-04-08T18:07:09.652Z"
},
{
"id": 146,
"firstName": "Jacynthe",
"lastName": "Sawayn",
"fullName": "Jacynthe Sawayn",
"username": "jacynthe_sawayn71",
"email": "jacynthe_sawayn71@example.com",
"phone": "+1 202-555-0145 ext 2",
"bio": "knickers lover",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-146",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-146&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-146/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-05-01T08:29:41.776Z",
"updatedAt": "2025-12-18T22:23:25.919Z"
},
{
"id": 147,
"firstName": "Hershel",
"lastName": "Smitham",
"fullName": "Hershel Smitham",
"username": "hershel.smitham",
"email": "hershel.smitham@example.com",
"phone": "+1 202-555-0146 ext 2",
"bio": "film lover, coach, environmentalist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-147/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "hershel.smitham",
"createdAt": "2025-12-24T14:06:40.518Z",
"updatedAt": "2026-01-09T03:04:56.472Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/users?page=7&limit=24",
"first": "/api/v1/users?page=1&limit=24",
"last": "/api/v1/users?page=11&limit=24",
"next": "/api/v1/users?page=8&limit=24",
"prev": "/api/v1/users?page=6&limit=24"
}
}