example-data.com
Menu
Browse docs and collections

Overview

events / #38

Apr
27
Tue

Premier Networking Event 2026

8:25 PM – 12:18 PM

Miami, FL

62 attending

Absconditus carcer angelus adstringo vehemens despecto. Reprehenderit derelinquo tantum tego tepidus vesica alveus. Suffragium ara blandior angelus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 38,
  "title": "Premier Networking Event 2026",
  "slug": "premier-networking-event-2026-38",
  "description": "Absconditus carcer angelus adstringo vehemens despecto. Reprehenderit derelinquo tantum tego tepidus vesica alveus. Suffragium ara blandior angelus.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2027-04-27T20:25:42.961Z",
  "endAt": "2027-04-29T12:18:18.495Z",
  "organizerUserId": 195,
  "attendeeCount": 62,
  "createdAt": "2026-03-09T13:37:58.362Z",
  "updatedAt": "2026-03-27T22:21:36.863Z"
}