example-data.com
Menu
Browse docs and collections

Overview

events / #80

Aug
2
Sun

Global Launch Party 2025

5:27 AM – 10:02 PM

Online

431 attending

Viriliter molestias torrens ad una capto cognatus. Agnosco cauda aureus sum. Illum nemo barba sol.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/events/80"
);
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/80"
);
const event = (await res.json()) as Event;

Python example

import requests

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

Response

{
  "id": 80,
  "title": "Global Launch Party 2025",
  "slug": "global-launch-party-2025-80",
  "description": "Viriliter molestias torrens ad una capto cognatus. Agnosco cauda aureus sum. Illum nemo barba sol.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-08-02T05:27:37.875Z",
  "endAt": "2026-08-03T22:02:21.909Z",
  "organizerUserId": 171,
  "attendeeCount": 431,
  "createdAt": "2025-11-06T16:59:33.419Z",
  "updatedAt": "2025-11-10T21:20:06.232Z"
}