example-data.com
Menu
Browse docs and collections

Overview

events / #119

Mar
9
Tue

Virtual Networking Event 2026

1:20 PM – 8:01 AM

San Francisco, CA

608 attending

Annus angulus illum conforto tepidus creber delinquo. Vilitas velit officia aufero timor voluptatem thymum. Suasoria cupiditate necessitatibus et verbum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 119,
  "title": "Virtual Networking Event 2026",
  "slug": "virtual-networking-event-2026-119",
  "description": "Annus angulus illum conforto tepidus creber delinquo. Vilitas velit officia aufero timor voluptatem thymum. Suasoria cupiditate necessitatibus et verbum.",
  "location": "San Francisco, CA",
  "isOnline": false,
  "startAt": "2027-03-09T13:20:34.833Z",
  "endAt": "2027-03-11T08:01:17.269Z",
  "organizerUserId": 128,
  "attendeeCount": 608,
  "createdAt": "2026-02-11T18:23:34.797Z",
  "updatedAt": "2026-04-14T10:46:17.417Z"
}