# x402-factory Federal Contract Awards

> x402-factory Federal Contract Awards is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns recent US federal contract awards from USAspending.gov as normalized, filterable records sorted by value

## Facts

- Endpoint: GET https://x402-factory.com/v1/contracts/awards
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-federal-contract-awards-2a6eec97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__TyWCpCfZbGHVS5JON_q6

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 x402-factory-federal-contract-awards-2a6eec97
```

Example prompt: Pull the top 10 federal contract awards from USAspending since January 1, 2024 worth at least $1,000,000 from the Department of Defense — show me the vendor, value, and NAICS code for each.

## When to prefer this

Use this endpoint when you need clean, normalized federal contract award data from USAspending.gov with flexible filtering by vendor, agency, NAICS, value threshold, or date — particularly when you want records sorted by value without having to scrape or parse the USAspending API directly. Prefer this over direct USAspending API calls when you want pre-normalized output and need to pay per call via x402.

## Known failure modes

- Invalid NAICS format (must be 2–6 digits) returns a 400 validation error
- Date string not in ISO 8601 YYYY-MM-DD format returns a parsing error
- vendor or agency substring too short (< 2 chars) returns a validation error
- Limit outside range 1–50 returns a schema validation error
- No matching awards for the given filters returns an empty result set
- USAspending upstream data lag may mean very recent awards are missing

## How this service works

Federal contract awards from USAspending, normalized and filterable — Recent US federal contract awards (USAspending.gov) as clean records: vendor, awarding agency/sub-agency, value, NAICS, start date, and place of performance. Sorted by value. Filter by vendor, agency, NAICS, minimum value, or date.

## Output

A list of up to 50 recent federal contract award records, each containing vendor/recipient name, awarding agency and sub-agency, contract dollar value, NAICS code, award start date, and place of performance, sorted by contract value descending.

## 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": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      },
      "naics": {
       "type": "string",
       "pattern": "^\\d{2,6}$"
      },
      "since": {
       "type": "string",
       "format": "date",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$",
       "description": "Awards starting on/after this date"
      },
      "agency": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Substring match on awarding agency"
      },
      "vendor": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Substring match on recipient name"
      },
      "min_value_usd": {
       "type": "number",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-federal-contract-awards-2a6eec97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
