example-data.com
Menu
Browse docs and collections

users

users

Page 5 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": 97,
      "firstName": "Esperanza",
      "lastName": "Casper",
      "fullName": "Esperanza Casper",
      "username": "esperanza_casper",
      "email": "esperanza_casper@example.com",
      "phone": "+1 202-555-0196 ext 1",
      "bio": "yin devotee  🧑🏾‍🎓",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-97",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-97&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-97/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2025-04-24T05:17:08.100Z",
      "updatedAt": "2026-05-18T04:31:08.632Z"
    },
    {
      "id": 98,
      "firstName": "Tabitha",
      "lastName": "McKenzie",
      "fullName": "Tabitha McKenzie",
      "username": "tabitha_mckenzie",
      "email": "tabitha_mckenzie@example.com",
      "phone": "+1 202-555-0197 ext 1",
      "bio": "harp junkie, founder 🇵🇰",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-98",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-98&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-98/1200/400",
      "emailVerified": false,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2025-01-06T01:01:40.791Z",
      "updatedAt": "2025-03-31T17:12:36.580Z"
    },
    {
      "id": 99,
      "firstName": "Whitney",
      "lastName": "O'Reilly",
      "fullName": "Whitney O'Reilly",
      "username": "whitney.oreilly",
      "email": "whitney.oreilly@example.com",
      "phone": "+1 202-555-0198 ext 1",
      "bio": "philosopher, singer, scientist",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-99",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-99&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-99/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": "whitney.oreilly",
      "createdAt": "2024-11-13T16:33:45.026Z",
      "updatedAt": "2025-12-25T06:48:00.040Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/users?page=5&limit=24",
    "first": "/api/v1/users?page=1&limit=24",
    "last": "/api/v1/users?page=11&limit=24",
    "next": "/api/v1/users?page=6&limit=24",
    "prev": "/api/v1/users?page=4&limit=24"
  }
}