example-data.com
Menu
Browse docs and collections

Overview

events / #75

Jan
7
Thu

Global Meetup 2026

11:36 PM – 9:53 PM

Los Angeles, CA

419 attending

Alias aperiam tondeo denuncio adstringo exercitationem. Corpus ante praesentium careo aperiam vestrum strenuus rerum testimonium. Contabesco adeptio voco conqueror deduco audentia deputo aspicio cornu.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 75,
  "title": "Global Meetup 2026",
  "slug": "global-meetup-2026-75",
  "description": "Alias aperiam tondeo denuncio adstringo exercitationem. Corpus ante praesentium careo aperiam vestrum strenuus rerum testimonium. Contabesco adeptio voco conqueror deduco audentia deputo aspicio cornu.",
  "location": "Los Angeles, CA",
  "isOnline": false,
  "startAt": "2027-01-07T23:36:13.387Z",
  "endAt": "2027-01-09T21:53:14.247Z",
  "organizerUserId": 209,
  "attendeeCount": 419,
  "createdAt": "2025-11-30T09:35:55.122Z",
  "updatedAt": "2025-12-22T12:15:09.115Z"
}