# x402-factory NASA Contract Awards

> x402-factory NASA 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 the latest NASA federal contract awards from USAspending, pre-filtered to NASA, with recipient, value, NAICS code, and award dates, sorted newest first.

## Facts

- Endpoint: GET https://x402-factory.com/v1/contracts/awards/nasa
- 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-nasa-contract-awards-0f84ef34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1E_vlIQAY88hpsDwsv5y3

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-nasa-contract-awards-0f84ef34
```

Example prompt: Show me the latest NASA contract awards — filter to NAICS code 541715, awarded since 2024-01-01, and return up to 25 results.

## When to prefer this

Choose this endpoint when you specifically need NASA contract award data pre-filtered without building your own query against USAspending. It is ideal for agents monitoring NASA procurement activity, doing vendor intelligence on NASA suppliers, or tracking spending by NAICS sector within NASA. Prefer this over the generic /v1/contracts/awards endpoint when NASA-only data is all you need.

## Known failure modes

- Invalid date format for 'since' parameter returns a 400 validation error
- NAICS code not matching the regex pattern (2-6 digits) returns a validation error
- No results found for overly narrow filters returns an empty awards array
- Rate limiting or payment failure returns a 402 response requiring USDC payment
- USAspending upstream data lag may mean very recent awards are not yet reflected

## How this service works

Latest NASA contract awards — Latest federal contract awards from NASA: recipient, value, NAICS, and award dates from USAspending, newest first. Same shape as /v1/contracts/awards, pre-filtered to NASA.

## Output

A JSON object with a 'data.awards' array of contract award objects, each containing vendor name, agency, sub-agency, description, value in USD, award date, NAICS code, and place of performance, plus a meta object. Results are sorted newest 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"
   ],
   "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"
      },
      "vendor": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Substring match on recipient name"
      },
      "min_value_usd": {
       "type": "number",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "awards"
       ],
       "properties": {
        "awards": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "vendor",
           "agency",
           "description",
           "value_usd",
           "award_date"
          ],
          "properties": {
           "naics": {
            "type": "string"
           },
           "agency": {
            "type": "string"
           },
           "vendor": {
            "type": "string"
           },
           "value_usd": {
            "type": "number"
           },
           "award_date": {
            "type": "string"
           },
           "sub_agency": {
            "type": "string"
           },
           "description": {
            "type": "string"
           },
           "place_of_performance": {
            "type": "string"
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "awards": [
    {
     "naics": "336414",
     "agency": "National Aeronautics and Space Administration",
     "vendor": "THE BOEING COMPANY",
     "value_usd": 22440930496.75,
     "award_date": "1993-11-15",
     "sub_agency": "National Aeronautics and Space Administration",
     "description": "INTERNATIONAL SPACE STATION",
     "place_of_performance": "TX, USA"
    },
    {
     "naics": "541710",
     "agency": "National Aeronautics and Space Administration",
     "vendor": "LOCKHEED MARTIN CORP",
     "value_usd": 15555973334.93,
     "award_date": "2006-09-06",
     "sub_agency": "National Aeronautics and Space Administration",
     "description": "TAS::80 0124::TAS DESIGN, DEVELOPMENT, TEST&EVALUATION OF PROJECT ORION",
     "place_of_performance": "CO, USA"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.awards.nasa",
   "sources": [
    "USAspending"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/contracts/awards/nasa",
   "data_mode": "live",
   "freshness": "daily",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.072Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-nasa-contract-awards-0f84ef34/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)
