example-data.com
Menu
Browse docs and collections

Overview

events / #79

May
7
Thu

Premier Networking Event 2025

12:28 AM – 7:00 AM

Online

276 attending

Apto somniculosus defleo defleo viduo coniecto terebro aqua ad vinco. Capillus labore quasi arx bis statim arma. Bonus adipisci sperno nemo brevis quae coma damnatio sodalitas utrum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 79,
  "title": "Premier Networking Event 2025",
  "slug": "premier-networking-event-2025-79",
  "description": "Apto somniculosus defleo defleo viduo coniecto terebro aqua ad vinco. Capillus labore quasi arx bis statim arma. Bonus adipisci sperno nemo brevis quae coma damnatio sodalitas utrum.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-05-07T00:28:19.679Z",
  "endAt": "2026-05-07T07:00:24.163Z",
  "organizerUserId": 87,
  "attendeeCount": 276,
  "createdAt": "2025-08-29T13:31:59.582Z",
  "updatedAt": "2025-12-15T21:46:37.185Z"
}