example-data.com
Menu
Browse docs and collections

Overview

events / #16

Jan
23
Fri

Local Meetup 2025

8:08 AM – 4:10 AM

Seattle, WA

618 attending

Umquam spiculum cuppedia audax. Vomito ab depono turba ut defaeco. Absens ullus uxor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 16,
  "title": "Local Meetup 2025",
  "slug": "local-meetup-2025-16",
  "description": "Umquam spiculum cuppedia audax. Vomito ab depono turba ut defaeco. Absens ullus uxor.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2026-01-23T08:08:06.546Z",
  "endAt": "2026-01-24T04:10:36.621Z",
  "organizerUserId": 224,
  "attendeeCount": 618,
  "createdAt": "2026-02-27T01:20:44.013Z",
  "updatedAt": "2026-03-05T19:35:49.783Z"
}