example-data.com
Menu
Browse docs and collections

events

events

Page 2 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": 25,
      "title": "Virtual Launch Party 2025",
      "slug": "virtual-launch-party-2025-25",
      "description": "Summopere bardus vulnus cubicularis pecco adsum. Ager caterva autem subvenio patior vis vitiosus patior vester. Abbas provident aer velum atqui.",
      "location": "San Francisco, CA",
      "isOnline": false,
      "startAt": "2026-11-02T02:49:19.704Z",
      "endAt": "2026-11-02T16:00:04.283Z",
      "organizerUserId": 179,
      "attendeeCount": 699,
      "createdAt": "2026-04-13T19:15:32.987Z",
      "updatedAt": "2026-04-16T03:42:07.596Z"
    },
    {
      "id": 26,
      "title": "Premier Sprint 2026",
      "slug": "premier-sprint-2026-26",
      "description": "Statim speciosus vito iure aut pauci usitas. Comitatus baiulus absens deputo. Depono toties decerno aranea usitas.",
      "location": "San Francisco, CA",
      "isOnline": false,
      "startAt": "2025-11-15T04:03:46.962Z",
      "endAt": "2025-11-15T07:23:58.068Z",
      "organizerUserId": 182,
      "attendeeCount": 749,
      "createdAt": "2026-05-01T08:46:59.032Z",
      "updatedAt": "2026-05-06T23:13:20.396Z"
    },
    {
      "id": 27,
      "title": "Global Demo Day 2025",
      "slug": "global-demo-day-2025-27",
      "description": "Auctor pel aranea audacia tego terra. Natus vehemens celer admitto comminor coniecto debilito summisse degusto argentum. Adduco consuasor thalassinus nam cupiditate urbanus stultus.",
      "location": "San Francisco, CA",
      "isOnline": false,
      "startAt": "2027-03-20T13:54:03.397Z",
      "endAt": "2027-03-21T08:54:42.119Z",
      "organizerUserId": 20,
      "attendeeCount": 153,
      "createdAt": "2025-05-30T01:50:17.680Z",
      "updatedAt": "2025-12-05T20:14:57.353Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/events?page=2&limit=24",
    "first": "/api/v1/events?page=1&limit=24",
    "last": "/api/v1/events?page=7&limit=24",
    "next": "/api/v1/events?page=3&limit=24",
    "prev": "/api/v1/events?page=1&limit=24"
  }
}