# Base Builder Grant Finder

> Base Builder Grant Finder is a paid API for AI agents from agentic.clawbots.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a ranked, deadline-aware list of open Base ecosystem funding programs including grants, accelerators, hackathons, and retro-funding opportunities with source URLs, deadlines, funding ranges, and freshness signals.

## Facts

- Endpoint: POST https://agentic.clawbots.org/api/agentic/tools/base-builder-grant-finder
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-clawbots-org-0b7506e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uk-Vu1QPFxDNzXzQtJ7SR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentic-clawbots-org-0b7506e7 -d '<json body>'
```

Example prompt: I'm building a dapp on Base and want to know what grants, hackathons, accelerators, or retro-funding rounds are currently open — show me a ranked list with deadlines and how much each one pays out.

## When to prefer this

Use this endpoint when an AI agent or builder needs a single call to discover all currently open Base ecosystem funding opportunities with deadlines and amounts, rather than manually searching multiple grant pages, hackathon sites, or ecosystem dashboards. Ideal for deadline-driven workflows where recency and ranking matter.

## Known failure modes

- No open funding programs found — all known programs may be closed or expired
- Stale entries returned when source websites have not been re-crawled recently, flagged via last_verified_at
- Network or upstream data source unavailability causing empty or partial results
- Payment failure via x402 protocol resulting in 402 response before data is returned
- Schema mismatch if body is malformed or required fields are missing

## How this service works

Returns a ranked, deadline-aware list of open Base ecosystem funding programs (grants, accelerators, hackathons, retro-funding). Each result cites source_url, deadline, funding_range_usd, and last_verified_at. Stale entries are flagged. Designed for agents and builders shipping on Base who need a single call to surface the next applicable funding deadline.

## Output

A ranked list of open Base ecosystem funding programs, each entry including the program name, source URL, application deadline, funding range in USD, last verified timestamp, and a staleness flag if the data may be outdated. Results are ordered by deadline urgency to surface the most time-sensitive opportunities first.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  },
  "description": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-clawbots-org-0b7506e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic.clawbots.org](https://www.zero.xyz/host/agentic.clawbots.org/llms.txt)
