example-data.com
Menu
Browse docs and collections

users

users

Page 6 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": 121,
      "firstName": "Lennie",
      "lastName": "Dickinson",
      "fullName": "Lennie Dickinson",
      "username": "lennie_dickinson8",
      "email": "lennie_dickinson8@example.com",
      "phone": "+1 202-555-0120 ext 2",
      "bio": "model, teacher, streamer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-121",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-121&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-121/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2026-03-07T10:23:12.391Z",
      "updatedAt": "2026-04-02T20:19:17.006Z"
    },
    {
      "id": 122,
      "firstName": "Nikko",
      "lastName": "Kuhlman",
      "fullName": "Nikko Kuhlman",
      "username": "nikko_kuhlman",
      "email": "nikko_kuhlman@example.com",
      "phone": "+1 202-555-0121 ext 2",
      "bio": "fax enthusiast",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-122&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-122/1200/400",
      "emailVerified": true,
      "isActive": false,
      "twitterHandle": null,
      "createdAt": "2024-06-03T17:49:45.002Z",
      "updatedAt": "2025-11-01T22:54:59.126Z"
    },
    {
      "id": 123,
      "firstName": "Telly",
      "lastName": "Sanford",
      "fullName": "Telly Sanford",
      "username": "telly.sanford",
      "email": "telly.sanford@example.com",
      "phone": "+1 202-555-0122 ext 2",
      "bio": "author, creator",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-123",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-123&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-123/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2024-12-31T21:45:35.357Z",
      "updatedAt": "2025-12-01T13:43:40.183Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/users?page=6&limit=24",
    "first": "/api/v1/users?page=1&limit=24",
    "last": "/api/v1/users?page=11&limit=24",
    "next": "/api/v1/users?page=7&limit=24",
    "prev": "/api/v1/users?page=5&limit=24"
  }
}