example-data.com
Menu
Browse docs and collections

Overview

events / #95

Feb
26
Thu

Global Meetup 2025

9:54 AM – 8:05 AM

Denver, CO

410 attending

Aeneus callide sunt abutor colo ventus. Subvenio pariatur cubo talis venio clamo totam tenus arto textor. Odit acidus approbo clibanus asper amicitia casus summa.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/events/95" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/events/95"
);
const event = 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 } from "./types/events";

const res = await fetch(
  "https://example-data.com/api/v1/events/95"
);
const event = (await res.json()) as Event;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/events/95"
)
event = res.json()

Response

{
  "id": 95,
  "title": "Global Meetup 2025",
  "slug": "global-meetup-2025-95",
  "description": "Aeneus callide sunt abutor colo ventus. Subvenio pariatur cubo talis venio clamo totam tenus arto textor. Odit acidus approbo clibanus asper amicitia casus summa.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2026-02-26T09:54:18.306Z",
  "endAt": "2026-02-27T08:05:12.687Z",
  "organizerUserId": 187,
  "attendeeCount": 410,
  "createdAt": "2025-07-09T05:56:32.745Z",
  "updatedAt": "2026-05-07T22:33:03.430Z"
}