Hack Club
Android HTML5 Web Wrapper Open Source

Light, fast, and dynamic Web Calendar

Hack Date is an open-source, high-performance Android web-wrapper app built explicitly to track and schedule Hack Club events. Monitor live timelines, organize your schedule, and access community gatherings straight from your mobile environment.

App Features

Event Archive

Easily browse through a comprehensive timeline of every single Hack Club event ever hosted historically.

Upcoming Timelines

Stay updated ahead of time. Monitor upcoming events scheduled across the community directly instantly.

Calendar Integration

Never miss a session. Export and add events directly to your personal Google Calendar with a single click.

Application Screenshots

App Screen 1 App Screen 2 App Screen 3

Data & API Setup

A simple JSON API delivering real-time logs. For structural details, view the official Hack Club API Documentation.

The application updates interfaces sequentially by mapping queries onto standardized HTTP endpoints.

Core API Endpoints

Parameter Constraints & Filtering

Isolate categories using the custom query parameters via ?tags= mutation. Append continuous strings broken by standard commas:

{
  "id": "8a20db4e-35e8-47a3-a075-d392173a86d9",
  "slug": "code-in-the-dark",
  "title": "Code in the Dark",
  "desc": "On a live Zoom call, we're going to…",
  "leader": "@amogh",
  "cal": "https://www.google.com/calendar/render?action=TEMPLATE&…",
  "start": "2020-04-02T00:00:00.000Z",
  "end": "2020-04-02T01:00:00.000Z",
  "youtube": null,
  "ama": false,
  "amaId": "",
  "amaAvatar": "",
  "avatar": "https://…",
  "tags": ["workshop", "social"]
}
{
  "id": "4f616602-d015-4383-9511-04a890396655",
  "slug": "ama-with-guillermo-rauch",
  "title": "AMA with Guillermo Rauch",
  "desc": "Guillermo is the founder of…",
  "leader": "@lachlanjc",
  "cal": "https://www.google.com/calendar/render?action=TEMPLATE&…",
  "start": "2020-05-14T20:00:00.000Z",
  "end": "2020-05-14T21:00:00.000Z",
  "youtube": "https://youtu.be/PXlDzMMZydk",
  "ama": true,
  "amaId": "recx1wwapHrBPZ3Mq",
  "amaAvatar": "https://dl.airtable.com/.attachmentThumbnails/…",
  "avatar": "https://dl.airtable.com/.attachmentThumbnails/…",
  "tags": ["ama"]
}
Structural Guidelines:
  • Primary unique identifiers (id) conform strictly to standard UUID variants.
  • Description metrics (desc) utilize rich text rendering configured via Markdown formats.
  • The tags property returns an explicit array containing standard string variables.