example-data.com

users

users

Page 9 of 10.

Selina Flatley

Selina Flatley

@selina_flatley

technician advocate, photographer 🇦🇮

Phone
(620) 654-6058
Joined
8/16/2024
Tabitha Ruecker

Tabitha Ruecker

@tabitha.ruecker

film lover, teacher, engineer 🤦🏼‍♀️

Phone
(765) 848-2585
Joined
10/30/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": 193,
      "firstName": "Selina",
      "lastName": "Flatley",
      "fullName": "Selina Flatley",
      "username": "selina_flatley",
      "email": "selina_flatley@example.com",
      "phone": "(620) 654-6058",
      "bio": "technician advocate, photographer 🇦🇮",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-193",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-193&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-193/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": null,
      "createdAt": "2024-08-16T22:13:21.049Z",
      "updatedAt": "2024-12-21T21:43:34.191Z"
    },
    {
      "id": 194,
      "firstName": "Oliver",
      "lastName": "Mitchell",
      "fullName": "Oliver Mitchell",
      "username": "oliver_mitchell50",
      "email": "oliver_mitchell50@example.com",
      "phone": "(923) 253-8139",
      "bio": "scorn junkie",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-194/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": "oliver_mitchell50",
      "createdAt": "2025-03-11T17:00:16.498Z",
      "updatedAt": "2025-12-13T19:03:19.010Z"
    },
    {
      "id": 195,
      "firstName": "Maryam",
      "lastName": "Kunze",
      "fullName": "Maryam Kunze",
      "username": "maryam_kunze",
      "email": "maryam_kunze@example.com",
      "phone": "(558) 429-8583",
      "bio": "streamer, dreamer",
      "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-195",
      "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-195&size=128",
      "coverImageUrl": "https://picsum.photos/seed/user-cover-195/1200/400",
      "emailVerified": true,
      "isActive": true,
      "twitterHandle": "maryam_kunze",
      "createdAt": "2026-01-01T20:46:25.805Z",
      "updatedAt": "2026-04-06T07:24:44.460Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/users?page=9",
    "next": "/api/v1/users?page=10",
    "prev": "/api/v1/users?page=8"
  }
}
Draftbit