example-data.com

users

users

Page 6 of 10.

Gerda Streich

Gerda Streich

@gerda_streich

founder, friend, inventor 🇨🇻

Phone
(817) 206-6816
Joined
5/26/2025

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": 121,
      "firstName": "Lennie",
      "lastName": "Dickinson",
      "fullName": "Lennie Dickinson",
      "username": "lennie_dickinson8",
      "email": "lennie_dickinson8@example.com",
      "phone": "(620) 450-0668",
      "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": "(422) 696-4044",
      "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": "(662) 481-4082",
      "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",
    "next": "/api/v1/users?page=7",
    "prev": "/api/v1/users?page=5"
  }
}
Draftbit