example-data.com
Menu
Browse docs and collections

Overview

events / #149

Aug
2
Sat

Community Launch Party 2025

3:52 AM – 9:00 AM

Austin, TX

86 attending

Arbitro umerus asperiores ocer iure cubo temperantia. Ambulo vallum cohors molestias. Pax caritas articulus repudiandae arto adsum vester aestas bis subseco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 149,
  "title": "Community Launch Party 2025",
  "slug": "community-launch-party-2025-149",
  "description": "Arbitro umerus asperiores ocer iure cubo temperantia. Ambulo vallum cohors molestias. Pax caritas articulus repudiandae arto adsum vester aestas bis subseco.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2025-08-02T03:52:02.060Z",
  "endAt": "2025-08-02T09:00:39.663Z",
  "organizerUserId": 132,
  "attendeeCount": 86,
  "createdAt": "2025-08-31T03:56:14.681Z",
  "updatedAt": "2026-03-07T06:26:17.375Z"
}