example-data.com

users

users

Page 5 of 10.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/users?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = await res.json();
import type { User, ListEnvelope } from "https://example-data.com/types/users.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<User>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/users",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 97,
      "firstName": "Esperanza",
      "lastName": "Casper",
      "fullName": "Esperanza Casper",
      "username": "esperanza_casper",
      "email": "esperanza_casper@example.com",
      "phone": "(627) 232-1964",
      "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": "(707) 741-5069",
      "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": "(602) 631-4272",
      "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",
    "next": "/api/v1/users?page=6",
    "prev": "/api/v1/users?page=4"
  }
}
Draftbit