example-data.com
Menu
Browse docs and collections

Overview

events / #29

Mar
29
Sun

Community Networking Event 2026

4:21 PM – 10:06 PM

Miami, FL

802 attending

Blandior conventus temptatio talio usus antiquus. Vester tactus summopere. Decor decretum dicta conspergo substantia suggero campana.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 29,
  "title": "Community Networking Event 2026",
  "slug": "community-networking-event-2026-29",
  "description": "Blandior conventus temptatio talio usus antiquus. Vester tactus summopere. Decor decretum dicta conspergo substantia suggero campana.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2026-03-29T16:21:20.669Z",
  "endAt": "2026-03-29T22:06:19.878Z",
  "organizerUserId": 130,
  "attendeeCount": 802,
  "createdAt": "2025-12-31T14:44:29.395Z",
  "updatedAt": "2026-01-22T23:09:30.929Z"
}