example-data.com

users

users

Page 7 of 10.

Rickie Sporer

Rickie Sporer

@rickie.sporer50

platypus advocate, model 🧑🏿‍💻

Phone
(952) 244-6474
Joined
7/14/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": 145,
      "firstName": "Tillman",
      "lastName": "Breitenberg",
      "fullName": "Tillman Breitenberg",
      "username": "tillman_breitenberg54",
      "email": "tillman_breitenberg54@example.com",
      "phone": "(444) 621-6962",
      "bio": "chow junkie, coach 🏀",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-145&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-145/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2026-03-30T22:43:49.261Z",
      "updatedAt": "2026-04-08T18:07:09.652Z"
    },
    {
      "id": 146,
      "firstName": "Jacynthe",
      "lastName": "Sawayn",
      "fullName": "Jacynthe Sawayn",
      "username": "jacynthe_sawayn71",
      "email": "jacynthe_sawayn71@example.com",
      "phone": "(356) 649-9444",
      "bio": "knickers lover",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-146",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-146&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-146/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2025-05-01T08:29:41.776Z",
      "updatedAt": "2025-12-18T22:23:25.919Z"
    },
    {
      "id": 147,
      "firstName": "Hershel",
      "lastName": "Smitham",
      "fullName": "Hershel Smitham",
      "username": "hershel.smitham",
      "email": "hershel.smitham@example.com",
      "phone": "(359) 521-0483",
      "bio": "film lover, coach, environmentalist",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-147&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-147/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": "hershel.smitham",
      "createdAt": "2025-12-24T14:06:40.518Z",
      "updatedAt": "2026-01-09T03:04:56.472Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/users?page=7",
    "next": "/api/v1/users?page=8",
    "prev": "/api/v1/users?page=6"
  }
}
Draftbit