example-data.com
Menu
Browse docs and collections

events

events

Page 4 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": 73,
      "title": "Virtual Networking Event 2025",
      "slug": "virtual-networking-event-2025-73",
      "description": "Thymbra bos conor triumphus nobis angulus aestus. Tot tantum curriculum. Demum dolore clarus somniculosus tamisium sed defleo termes.",
      "location": "Chicago, IL",
      "isOnline": false,
      "startAt": "2026-08-05T06:58:52.811Z",
      "endAt": "2026-08-06T13:50:00.333Z",
      "organizerUserId": 14,
      "attendeeCount": 527,
      "createdAt": "2025-07-01T22:25:05.436Z",
      "updatedAt": "2026-03-11T16:53:21.083Z"
    },
    {
      "id": 74,
      "title": "Premier Hackathon 2026",
      "slug": "premier-hackathon-2026-74",
      "description": "Videlicet vester bos sophismata cibo ambitus statim cedo ante tergiversatio. Validus attollo qui aperio adsidue. Unde corrigo placeat creator toties minus exercitationem aveho.",
      "location": "Miami, FL",
      "isOnline": false,
      "startAt": "2027-02-20T12:13:17.964Z",
      "endAt": "2027-02-21T16:07:26.029Z",
      "organizerUserId": 164,
      "attendeeCount": 187,
      "createdAt": "2026-03-06T12:18:52.898Z",
      "updatedAt": "2026-04-07T21:14:11.713Z"
    },
    {
      "id": 75,
      "title": "Global Meetup 2026",
      "slug": "global-meetup-2026-75",
      "description": "Alias aperiam tondeo denuncio adstringo exercitationem. Corpus ante praesentium careo aperiam vestrum strenuus rerum testimonium. Contabesco adeptio voco conqueror deduco audentia deputo aspicio cornu.",
      "location": "Los Angeles, CA",
      "isOnline": false,
      "startAt": "2027-01-07T23:36:13.387Z",
      "endAt": "2027-01-09T21:53:14.247Z",
      "organizerUserId": 209,
      "attendeeCount": 419,
      "createdAt": "2025-11-30T09:35:55.122Z",
      "updatedAt": "2025-12-22T12:15:09.115Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/events?page=4&limit=24",
    "first": "/api/v1/events?page=1&limit=24",
    "last": "/api/v1/events?page=7&limit=24",
    "next": "/api/v1/events?page=5&limit=24",
    "prev": "/api/v1/events?page=3&limit=24"
  }
}