example-data.com
Menu
Browse docs and collections

users

users

Page 7 of 11.

Overview

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"
  }
}