# Script Master Labs SBIR Grants Search API

> Script Master Labs SBIR Grants Search API is a paid API for AI agents from mcp-x402.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Search U.S. federal SBIR/STTR grant awards by keyword, agency, and phase, paid per-call in USDC via x402

## Facts

- Endpoint: GET https://mcp-x402.onrender.com/x402/sbir-grants
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/script-master-labs-sbir-grants-search-api-7074ca2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jkJX0CCjzBfmatQcrzoMj

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 script-master-labs-sbir-grants-search-api-7074ca2b
```

Example prompt: Search for SBIR grants related to 'autonomous vehicles' from DOD, phase 2 only, and return the top 10 results.

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-call access to U.S. SBIR/STTR federal grant data filtered by technology keyword, agency, and phase, especially in agentic workflows that use x402 micropayment settlement on Base. Prefer this over manual SBA portal searches when automating grant discovery, competitive research, or proposal preparation pipelines.

## Known failure modes

- Missing required 'keyword' parameter returns a 400 validation error
- Payment not settled in USDC on Base results in a 402 Payment Required response
- Invalid agency abbreviation may return empty results rather than an error
- Overly broad or common keywords may return noisy or truncated result sets
- Service unavailability on the hosted render.com instance may cause 503 errors

## How this service works

Pay-per-call crypto, RWA, federal, SEC, Section 8/HUD housing, and compliance APIs via x402. Primary: USDC on Base (eip155:8453). Also accepts Global Dollar (USDG) on Robinhood Chain (eip155:4663) via sovereign X-PAYMENT-TX. Hyphen routes only (e.g. /x402/gas-tracker, /x402/pha-lookup, /x402/sec-8k). MARKETPLACE REVIEW: use free /x402/playground/* (no key, no payment). Production /x402/* returns 402 unless paid via x402 or X-Api-Market-Key / X-API-Key from seller dashboard.

## Output

A list of SBIR/STTR grant records matching the keyword and optional filters, including award details, agency, phase, and recipient information sourced from U.S. federal grant data.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "keyword"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 25,
       "minimum": 1
      },
      "phase": {
       "enum": [
        "1",
        "2"
       ],
       "type": "string",
       "description": "SBIR/STTR phase (1=feasibility, 2=development)."
      },
      "agency": {
       "type": "string",
       "description": "Federal agency abbreviation (e.g. DOD, NIH, NASA, NSF, DOE)."
      },
      "keyword": {
       "type": "string",
       "description": "Technology keywords (required)."
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/script-master-labs-sbir-grants-search-api-7074ca2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402.onrender.com](https://www.zero.xyz/host/mcp-x402.onrender.com/llms.txt)
