Discover/Devfolio API
live

Devfolio APIdevfolio.co

Search and filter hackathons from Devfolio by keyword, status, location, and date. Returns names, dates, locations, and registration details via one endpoint.

This API takes change requests — .
Endpoint health
verified 2h ago
search_hackathons
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the Devfolio API?

The Devfolio Hackathons API exposes one endpoint — search_hackathons — that returns up to 50 hackathon records per request, each carrying 13+ fields including name, slug, tagline, start and end dates, online/offline status, and location data. You can run free-text queries matched against hackathon names and descriptions, or filter by application status when no query is provided.

Try it
Zero-based offset for pagination. Use with size to page through results.
Number of hackathons to return per request, between 1 and 50.
Status filter applied when no query is provided. Ignored when query is set.
Free-text search query matched against hackathon names and descriptions. When provided, the type filter is ignored and results span all statuses.
api.parse.bot/scraper/ba5b840c-b804-4a04-ada0-30c1d7ebea88/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/ba5b840c-b804-4a04-ada0-30c1d7ebea88/search_hackathons' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "from": "0",
  "size": "10",
  "type": "application_open",
  "query": "blockchain"
}'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace devfolio-co-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: Devfolio hackathons SDK — search and filter hackathons."""
from parse_apis.devfolio_co_api import Devfolio, HackathonStatus, InvalidInput

client = Devfolio()

# Search hackathons by keyword — results span all statuses.
for hackathon in client.hackathons.search(query="blockchain", limit=3):
    print(hackathon.name, hackathon.starts_at, hackathon.themes)

# List hackathons with applications currently open.
first_open = client.hackathons.search(status=HackathonStatus.APPLICATION_OPEN, limit=1).first()
if first_open:
    print(first_open.name, first_open.participants_count, first_open.is_online)

# Handle invalid input gracefully.
try:
    client.hackathons.search(status=HackathonStatus.PAST, limit=5).first()
except InvalidInput as exc:
    print(f"Invalid input: {exc}")

print("exercised: hackathons.search (keyword + status filter + error handling)")
All endpoints · 1 totalmissing one? ·

Search hackathons by keyword or list them by status. When a query is provided, results are ranked by relevance across all hackathons regardless of status. When no query is provided, results are filtered by the type parameter (defaults to applications currently open). Results are paginated via from/size offsets.

Input
ParamTypeDescription
fromintegerZero-based offset for pagination. Use with size to page through results.
sizeintegerNumber of hackathons to return per request, between 1 and 50.
typestringStatus filter applied when no query is provided. Ignored when query is set.
querystringFree-text search query matched against hackathon names and descriptions. When provided, the type filter is ignored and results span all statuses.
Response
{
  "type": "object",
  "fields": {
    "from": "integer",
    "size": "integer",
    "total": "integer",
    "hackathons": "array of hackathon objects with uuid, name, slug, tagline, type, starts_at, ends_at, is_online, city, state, country, location, themes, participants_count, team_size, team_min, projects_submitted, cover_img, logo, subdomain, verified"
  },
  "sample": {
    "data": {
      "from": 0,
      "size": 3,
      "total": 19,
      "hackathons": [
        {
          "city": "Bengaluru",
          "logo": "https://assets.devfolio.co/hackathons/9ca9be8320484be0840ad2f4771bc4f9/assets/logo/81.png",
          "name": "Build with Gemma",
          "slug": "build-with-gemma-bengaluru-ai-sprint",
          "type": "HACKATHON",
          "uuid": "9ca9be8320484be0840ad2f4771bc4f9",
          "state": "Karnataka",
          "themes": [
            "FinTech",
            "AI/ML"
          ],
          "country": "India",
          "ends_at": "2026-07-18T15:00:00+00:00",
          "tagline": "Bengaluru AI Sprint",
          "location": "Ramaiah Institute of Technology, MSRIT Post, M S R Nagar, Mathikere, Bengaluru, Karnataka, India",
          "team_min": 2,
          "verified": true,
          "cover_img": "https://assets.devfolio.co/hackathons/9ca9be8320484be0840ad2f4771bc4f9/assets/cover/957.png",
          "is_online": false,
          "starts_at": "2026-07-18T03:30:00+00:00",
          "subdomain": "build-with-gemma-bengaluru-ai-sprint",
          "team_size": 4,
          "participants_count": 738,
          "projects_submitted": 0
        }
      ]
    },
    "status": "success"
  }
}

About the Devfolio API

What the API Returns

The search_hackathons endpoint returns a paginated list of hackathon objects sourced from Devfolio. Each object includes uuid, name, slug, tagline, type, starts_at, ends_at, is_online, city, state, country, and location. The response envelope includes from, size, and total so you can track pagination position and total result count.

Querying and Filtering

The endpoint accepts two mutually exclusive modes. When the query parameter is set, results are ranked by relevance across all hackathons on the platform regardless of their status — the type filter is ignored in this mode. When query is omitted, the type parameter controls which status bucket is returned; the default shows hackathons with applications currently open. Pagination is controlled via from (zero-based offset) and size (1–50 per page).

Pagination Behavior

Use from and size together to page through large result sets. Set from=0 and size=50 for the first page, then increment from by size for subsequent pages. The total field in the response tells you how many records match your query or filter, so you can calculate the number of pages needed without over-fetching.

Coverage Scope

The API covers public hackathon listings on Devfolio, including both online and in-person events across multiple countries. Location fields (city, state, country) are populated for physical events; is_online distinguishes remote hackathons. Individual project submissions, participant profiles, team data, and prize details are not part of the current response shape.

Reliability & maintenanceVerified

The Devfolio API is a managed, monitored endpoint for devfolio.co — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when devfolio.co changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official devfolio.co API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a hackathon discovery feed filtered to open applications for a developer community newsletter
  • Track upcoming hackathon dates using starts_at and ends_at fields to surface events within a custom date window
  • Aggregate online-only hackathons by checking is_online for participants who cannot travel
  • Search hackathons by technology keyword using the query parameter to find themed events (e.g. 'AI', 'blockchain')
  • Page through the full Devfolio catalog using from and total to build a local index for a search tool
  • Display location-specific hackathons by filtering on city or country values returned in results
  • Monitor new hackathon listings by regularly polling search_hackathons with a status type filter and comparing uuid values
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Devfolio have an official developer API?+
Devfolio does not publish a documented public developer API. This Parse API provides structured access to hackathon listing data from devfolio.co.
How does the `type` filter behave, and when is it ignored?+
When the query parameter is provided, type is ignored and results are ranked by relevance across all hackathons on the platform. When query is omitted, type controls the status bucket shown — the default returns hackathons with applications currently open.
Does the API return hackathon project submissions or prize details?+
Not currently. The API returns hackathon listing data: name, tagline, dates, location, online status, and slug. Project submissions, prize breakdowns, and participant counts are not included in the current response. You can fork this API on Parse and revise it to add an endpoint targeting those details.
Are there any limitations on location data for online hackathons?+
For hackathons where is_online is true, city, state, and country fields may be empty or reflect the organizer's registered location rather than a meaningful event venue. Physical events populate these fields more consistently.
Can I retrieve a single hackathon's full detail page — schedule, sponsors, or FAQs?+
Not currently. The API covers search and listing data accessible via search_hackathons, returning fields like slug, tagline, starts_at, and ends_at. Granular detail pages with sponsor lists, schedules, or organizer FAQs are not exposed. You can fork this API on Parse and revise it to add a detail endpoint using the slug field.
Page content last updated . Spec covers 1 endpoint from devfolio.co.
Related APIs in Developer ToolsSee all →
devpost.com API
Search and discover hackathons on Devpost by filtering based on status, keywords, and sorting options like prize money or submission deadlines. Find the perfect hackathon competition that matches your interests and timeline.
mlh.io API
Search and discover hackathons by season, region, country, and date range, including filters for diversity-focused events and real-time listings of upcoming competitions. Find hackathons happening this month, in a specific country, or across any custom date range.
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.
hackerrank.com API
Retrieve challenge scores, difficulty ratings, success ratios, and track-level ranking data from HackerRank's public practice platform. Browse challenges by track, view submission statistics, and access ranking metrics across all available tracks.
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
data.fei.org API
Search and explore detailed information about international equestrian sports, including horses, riders, competition results, rankings, and show schedules from the FEI database. Look up specific athletes and horses, browse upcoming events by venue, and track performance across national federations.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.