example-data.com
Menu
Browse docs and collections

events

events

Page 6 of 7.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/events?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/events?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/events.d.ts https://example-data.com/types/events.d.ts
import type { Event, ListEnvelope } from "./types/events";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/events",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 121,
      "title": "Summit Sprint 2025",
      "slug": "summit-sprint-2025-121",
      "description": "Cursus suggero cornu reprehenderit sursum explicabo quam illo adfectus absens. Carmen exercitationem vulpes. Certus ante argumentum acies corona volo.",
      "location": "Online",
      "isOnline": true,
      "startAt": "2026-12-30T10:58:32.197Z",
      "endAt": "2026-12-31T05:27:32.278Z",
      "organizerUserId": 38,
      "attendeeCount": 120,
      "createdAt": "2025-10-28T00:14:30.666Z",
      "updatedAt": "2025-12-04T20:11:24.006Z"
    },
    {
      "id": 122,
      "title": "Community Bootcamp 2025",
      "slug": "community-bootcamp-2025-122",
      "description": "Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.",
      "location": "New York, NY",
      "isOnline": false,
      "startAt": "2025-11-01T14:07:48.201Z",
      "endAt": "2025-11-03T05:24:35.542Z",
      "organizerUserId": 46,
      "attendeeCount": 61,
      "createdAt": "2025-05-29T11:32:24.327Z",
      "updatedAt": "2025-12-04T14:24:45.503Z"
    },
    {
      "id": 123,
      "title": "Global Tech Talk 2026",
      "slug": "global-tech-talk-2026-123",
      "description": "Adsidue sui altus. Iusto caterva suus tamquam accusamus defleo aptus. Desidero coerceo tracto arguo vulgivagus abduco corporis crepusculum appositus aequitas.",
      "location": "Online",
      "isOnline": true,
      "startAt": "2026-06-12T08:11:21.753Z",
      "endAt": "2026-06-13T04:32:15.864Z",
      "organizerUserId": 188,
      "attendeeCount": 991,
      "createdAt": "2025-09-28T10:41:27.481Z",
      "updatedAt": "2026-03-29T04:22:00.773Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/events?page=6&limit=24",
    "first": "/api/v1/events?page=1&limit=24",
    "last": "/api/v1/events?page=7&limit=24",
    "next": "/api/v1/events?page=7&limit=24",
    "prev": "/api/v1/events?page=5&limit=24"
  }
}