Get all hackathons

GET /data.json

Responses

  • 200 application/json

    List of all hackathons

    Hide response attributes Show response attributes object
    • last_updated string(date-time) Required
    • count integer Required
    • hackathons array[object] Required

      A single hackathon listing.

      Hide hackathons attributes Show hackathons attributes object
      • _id string Required

        Internal unique identifier

      • id integer Required

        External hackathon ID from the source platform

      • url string(uri) Required
      • title string Required
      • thumbnail_url string
      • organization_name string Required
      • isOpen string Required
      • submission_period_dates string
      • displayed_location string Required
      • registrations_count integer
      • prizeText string
      • time_left_to_submission string
      • themes array[object]

        A theme or category associated with a hackathon.

        Hide themes attributes Show themes attributes object
        • id integer Required
        • name string Required
      • start_a_submission_url string(uri)
      • source string Required
GET /data.json
curl \
 --request GET 'https://webdevharsha.github.io/open-hackathons-api/data.json'
Response examples (200)
{
  "count": 4,
  "hackathons": [
    {
      "id": 27228,
      "title": "Meta Horizon Start Developer Competition",
      "displayed_location": "Online"
    }
  ],
  "last_updated": "2025-11-13T00:56:24.186216Z"
}