# USASpending Federal Awards Changes Feed

> USASpending Federal Awards Changes Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns recent federal awards from USASpending.gov since a given timestamp, sorted by value, with recipient, awarding agency, amount, type, and a direct source link.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/awards/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usaspending-federal-awards-changes-feed-f1da901d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jhRCzti9Ff4AgQXlAGbSG

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 usaspending-federal-awards-changes-feed-f1da901d
```

Example prompt: Pull the top 50 federal awards from USASpending since 2025-01-01T00:00:00Z — only ones with a significance score of at least 7 — so I can see who's winning the biggest government contracts right now.

## When to prefer this

Use this endpoint when you need a structured, filterable feed of new or updated federal awards directly from USASpending.gov — especially for govcon competitive intelligence, 'who is the government paying' research, or monitoring high-value procurement activity. Prefer this over general web search when you need machine-readable award data with significance scoring and direct source links.

## Known failure modes

- Invalid or missing 'since' parameter returns a 400 error
- 'limit' out of range (below 1 or above 500) returns validation error
- 'min_significance' out of range (below 1 or above 10) returns validation error
- No awards found in the window returns an empty changes array with count 0
- Upstream USASpending.gov unavailability may cause 502 or timeout
- Payment not provided or insufficient returns 402 Payment Required

## How this service works

Federal awards from USASpending.gov since a timestamp, sorted by value, with recipient, awarding agency, amount, type, and a direct link. Competitive intelligence for govcon, and 'who is the government paying' signal for research agents.

## Output

A JSON object with a count, source label, and an array of award change objects — each containing a title, summary, type, recipient and agency details, dollar amount, significance score (1–10), detection timestamp, effective date, and a direct USASpending.gov URL for verification.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/usaspending-federal-awards-changes-feed-f1da901d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
