example-data.com
Menu
Browse docs and collections

events

events

Page 5 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": 97,
      "title": "Premier Workshop 2025",
      "slug": "premier-workshop-2025-97",
      "description": "Triduana appositus congregatio coaegresco aureus aduro conor vindico. Temporibus vestigium accendo veniam calamitas hic umerus tricesimus. Dicta alienus caute audax adsidue eius theatrum unde aufero acquiro.",
      "location": "Austin, TX",
      "isOnline": false,
      "startAt": "2026-05-23T15:23:19.450Z",
      "endAt": "2026-05-25T11:33:19.293Z",
      "organizerUserId": 83,
      "attendeeCount": 805,
      "createdAt": "2026-04-22T19:11:15.248Z",
      "updatedAt": "2026-05-18T21:46:51.385Z"
    },
    {
      "id": 98,
      "title": "Virtual Launch Party 2025",
      "slug": "virtual-launch-party-2025-98",
      "description": "Deripio cubitum clarus incidunt autem adiuvo. Facilis abutor cogo. Alveus adicio suasoria vitium cohors expedita vorax adnuo certe.",
      "location": "Seattle, WA",
      "isOnline": false,
      "startAt": "2026-03-30T15:02:43.627Z",
      "endAt": "2026-03-31T20:33:39.288Z",
      "organizerUserId": 103,
      "attendeeCount": 265,
      "createdAt": "2025-09-12T09:25:06.345Z",
      "updatedAt": "2025-12-17T11:54:13.243Z"
    },
    {
      "id": 99,
      "title": "Community Demo Day 2026",
      "slug": "community-demo-day-2026-99",
      "description": "Depraedor repudiandae auctor conatus taedium appello. Tristis cavus sto vinco tabula id cohors sustineo argentum. Cotidie tabgo veritas.",
      "location": "Austin, TX",
      "isOnline": false,
      "startAt": "2026-08-10T18:04:00.870Z",
      "endAt": "2026-08-12T05:26:56.966Z",
      "organizerUserId": 179,
      "attendeeCount": 340,
      "createdAt": "2025-10-14T00:25:12.942Z",
      "updatedAt": "2026-03-22T02:48:09.052Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/events?page=5&limit=24",
    "first": "/api/v1/events?page=1&limit=24",
    "last": "/api/v1/events?page=7&limit=24",
    "next": "/api/v1/events?page=6&limit=24",
    "prev": "/api/v1/events?page=4&limit=24"
  }
}