example-data.com
Menu
Browse docs and collections

events

events

Page 7 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": 145,
      "title": "Premier Tech Talk 2025",
      "slug": "premier-tech-talk-2025-145",
      "description": "Conatus ambitus attollo veritatis quaerat contego argentum aequus ullus constans. Suppono creo est quis venia. Succedo commodi stabilis creta damnatio cariosus repudiandae amaritudo.",
      "location": "New York, NY",
      "isOnline": false,
      "startAt": "2026-06-25T04:42:40.099Z",
      "endAt": "2026-06-25T10:09:10.665Z",
      "organizerUserId": 229,
      "attendeeCount": 506,
      "createdAt": "2026-05-11T17:04:59.392Z",
      "updatedAt": "2026-05-20T08:05:02.631Z"
    },
    {
      "id": 146,
      "title": "Virtual Sprint 2025",
      "slug": "virtual-sprint-2025-146",
      "description": "Sint degero vilicus nisi comitatus. Constans speculum eaque umbra arbor eveniet depono subiungo abutor terga. Crebro ante admitto defleo cohibeo cogito velit vestigium cilicium.",
      "location": "Portland, OR",
      "isOnline": false,
      "startAt": "2026-06-15T20:44:40.096Z",
      "endAt": "2026-06-16T03:26:23.846Z",
      "organizerUserId": 64,
      "attendeeCount": 772,
      "createdAt": "2026-03-25T15:13:53.269Z",
      "updatedAt": "2026-03-28T03:39:15.237Z"
    },
    {
      "id": 147,
      "title": "Global Design Conference 2026",
      "slug": "global-design-conference-2026-147",
      "description": "Earum terreo tum. Voluptatem vilicus basium truculenter possimus. Cras vomer comedo eius praesentium absum reiciendis dignissimos cena aestivus.",
      "location": "San Francisco, CA",
      "isOnline": false,
      "startAt": "2025-07-21T13:44:39.090Z",
      "endAt": "2025-07-22T06:11:42.541Z",
      "organizerUserId": 108,
      "attendeeCount": 593,
      "createdAt": "2026-03-30T18:46:34.601Z",
      "updatedAt": "2026-05-07T03:03:06.669Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/events?page=7&limit=24",
    "first": "/api/v1/events?page=1&limit=24",
    "last": "/api/v1/events?page=7&limit=24",
    "next": null,
    "prev": "/api/v1/events?page=6&limit=24"
  }
}