# GovParse Federal Contract & Assistance Awards Feed

> GovParse Federal Contract & Assistance Awards Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a bulk, cursor-paginated feed of the latest USAspending prime awards (contracts and assistance) newest-first, filterable by NAICS, agency, amount, award type, and date.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/contract-awards
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-federal-contract-assistance-awards-feed-b700a877
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ArAavOqvUbC2VOIsi3jXJ

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 govparse-federal-contract-assistance-awards-feed-b700a877
```

Example prompt: Pull the latest federal contract and assistance awards in IT services — NAICS 5415 — awarded since June 1 2026, only amounts above $500,000, up to 500 rows, from any awarding agency.

## When to prefer this

Prefer this endpoint when you need a bulk, filterable stream of the most recent federal prime awards for sales prospecting, market intelligence, or monitoring which companies are receiving federal funding. It is ideal for agentic pipelines that need to page through large volumes of award records with cursor-based pagination and filter precisely by NAICS sector, awarding agency, award type, or recency. Choose over point-lookup endpoints when breadth and recency matter more than depth on a single award.

## Known failure modes

- Invalid cursor value returns a pagination error
- NAICS prefix not matching any awards returns empty result set
- min_amount set higher than any available awards returns empty rows
- Invalid date format for 'since' parameter returns a 400 validation error
- Rate limiting or payment failure (x402) blocks the request
- Requesting limit above 1000 may be capped or return an error

## How this service works

Which companies just won federal money? Bulk feed over USAspending prime awards (contracts + assistance), newest-first by action date — a funded-growth signal for the awardee. Flat rows, cursor-paginated up to 1000/page, filterable by NAICS, awarding agency, minimum amount, award kind, or since. Each row carries the awardee, agency, award amount (with a banded size bucket), NAICS, dates, and UEI. Observational public records as filed.

## Output

Returns flat rows of prime award records, newest-first by action date, cursor-paginated up to 1000 per page. Each row includes the awardee name, awarding agency, award amount (with a banded size bucket label), NAICS code, action date, award type (contract or assistance), and UEI identifier. Also returns a next_cursor token for fetching the next page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "kind": {
     "type": "string",
     "examples": [
      "contract"
     ],
     "description": "contract | assistance (grants, loans, direct payments). CSV for both; default both."
    },
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "naics": {
     "type": "string",
     "examples": [
      "5415"
     ],
     "description": "NAICS code prefix(es), CSV. Example: '5415' covers IT services."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only awards with an action date on or after this date (YYYY-MM-DD)."
    },
    "agency": {
     "type": "string",
     "examples": [
      "defense"
     ],
     "description": "Awarding agency or sub-agency name fragment."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNi0zMCIsImsiOiJDT05UXzEyMyJ9"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "min_amount": {
     "type": "integer",
     "examples": [
      1000000
     ],
     "description": "Minimum award amount in USD."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-federal-contract-assistance-awards-feed-b700a877/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
