example-data.com
Menu
Browse docs and collections

users

users

Page 8 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": 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"
  }
}