example-data.com
Menu
Browse docs and collections

Overview

events / #92

Mar
13
Fri

Open Hackathon 2025

7:55 PM – 11:06 AM

Online

279 attending

Cultura cubicularis anser illum vinitor thymum adsum spes. Nisi pecco architecto vigor tepidus tamen illum. Carbo aestas thalassinus repellat aegrus quos solutio absorbeo contego.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 92,
  "title": "Open Hackathon 2025",
  "slug": "open-hackathon-2025-92",
  "description": "Cultura cubicularis anser illum vinitor thymum adsum spes. Nisi pecco architecto vigor tepidus tamen illum. Carbo aestas thalassinus repellat aegrus quos solutio absorbeo contego.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-03-13T19:55:51.188Z",
  "endAt": "2026-03-14T11:06:40.425Z",
  "organizerUserId": 14,
  "attendeeCount": 279,
  "createdAt": "2025-12-21T12:58:53.534Z",
  "updatedAt": "2026-04-29T23:08:36.860Z"
}