example-data.com
Menu
Browse docs and collections

Overview

events / #145

Jun
25
Thu

Premier Tech Talk 2025

4:42 AM – 10:09 AM

New York, NY

506 attending

Conatus ambitus attollo veritatis quaerat contego argentum aequus ullus constans. Suppono creo est quis venia. Succedo commodi stabilis creta damnatio cariosus repudiandae amaritudo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 145,
  "title": "Premier Tech Talk 2025",
  "slug": "premier-tech-talk-2025-145",
  "description": "Conatus ambitus attollo veritatis quaerat contego argentum aequus ullus constans. Suppono creo est quis venia. Succedo commodi stabilis creta damnatio cariosus repudiandae amaritudo.",
  "location": "New York, NY",
  "isOnline": false,
  "startAt": "2026-06-25T04:42:40.099Z",
  "endAt": "2026-06-25T10:09:10.665Z",
  "organizerUserId": 229,
  "attendeeCount": 506,
  "createdAt": "2026-05-11T17:04:59.392Z",
  "updatedAt": "2026-05-20T08:05:02.631Z"
}