# x402-factory Department of Energy Contract Awards

> x402-factory Department of Energy 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-15).

Returns the latest federal contract awards from the Department of Energy, pre-filtered and sorted newest-first, with recipient, value, NAICS code, and award dates.

## Facts

- Endpoint: GET https://x402-factory.com/v1/contracts/awards/doe
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-department-of-energy-contract-awards-13cd690b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zfWUBqMuudouzS1IBFHxL

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-department-of-energy-contract-awards-13cd690b
```

Example prompt: Pull the 10 most recent Department of Energy contract awards for any vendor with 'Lockheed' in the name — show me recipient, value, and award date.

## When to prefer this

Choose this endpoint when you specifically need Department of Energy federal contract awards and want to avoid post-filtering a broader awards feed. It is pre-scoped to DOE, making it faster and cheaper than fetching all agency awards. Prefer it over the generic /v1/contracts/awards endpoint when your query is DOE-specific. Use the GSA sibling endpoint instead if you need General Services Administration contracts.

## Known failure modes

- No results returned when filters are too narrow (e.g. obscure NAICS code + high min_value_usd + tight date range)
- Invalid date format for 'since' parameter returns validation error
- NAICS code not matching DOE award categories returns empty list
- limit exceeding 50 rejected with 400 validation error
- Vendor substring too short (< 2 chars) rejected by schema validation

## How this service works

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

## Output

A JSON list of contract award objects sorted newest-first, each containing the recipient/vendor name, total award value in USD, NAICS code, award date, and related metadata mirroring the /v1/contracts/awards schema but pre-filtered to Department of Energy records.

## 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
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-department-of-energy-contract-awards-13cd690b/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)
