example-data.com
Menu
Browse docs and collections

Overview

events / #96

Apr
10
Sat

Global Launch Party 2025

7:32 PM – 7:44 PM

Online

407 attending

Valde tot in depraedor supellex comes culpa thymum. Aequus solum suadeo annus copiose cubicularis suscipio cresco aveho. Auctus adinventitias cernuus cena denuo coaegresco ubi crepusculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 96,
  "title": "Global Launch Party 2025",
  "slug": "global-launch-party-2025-96",
  "description": "Valde tot in depraedor supellex comes culpa thymum. Aequus solum suadeo annus copiose cubicularis suscipio cresco aveho. Auctus adinventitias cernuus cena denuo coaegresco ubi crepusculum.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2027-04-10T19:32:03.631Z",
  "endAt": "2027-04-11T19:44:58.097Z",
  "organizerUserId": 29,
  "attendeeCount": 407,
  "createdAt": "2026-03-05T01:22:21.015Z",
  "updatedAt": "2026-05-14T22:14:35.457Z"
}