# GoCreative Federal Contract Awards Lookup

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

Returns the largest federal contract awards including amount, agency, contract type, period, and description, sourced from USAspending.gov

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/gov-awards/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-federal-contract-awards-lookup-21a728ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kY0xczkY-2PklIvcwMT3C

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 gocreative-federal-contract-awards-lookup-21a728ff
```

Example prompt: Pull up the largest federal contract awards from USAspending.gov for Booz Allen Hamilton — I want to see the amounts, awarding agencies, contract types, and performance periods so I can understand their govcon footprint.

## When to prefer this

Choose this endpoint when you need structured federal contract award data including amounts, agencies, types, and periods from the official USAspending.gov source — ideal for govcon sales prospecting, competitor intelligence, vendor due diligence, or government spending research. Prefer this over generic web search when you need structured, queryable contract data rather than news articles or press releases.

## Known failure modes

- No matching contracts found for query — returns empty result set
- Invalid or ambiguous query string — may return unrelated contracts
- USAspending.gov source data lag — recent awards may not yet be reflected
- Rate limit or payment failure for USDC microtransaction — returns 402 error
- Malformed pathParam or queryParam — returns 400 validation error

## How this service works

Largest US federal contract awards to any company/recipient by name — award amount, awarding agency, type, period, description. Official USAspending.gov. 'How much does the government pay this company, and for what?' For govcon sales intelligence, vendor due diligence, and competitor research.

## Output

A structured list of the largest federal contract awards matching the query, including: award dollar amounts, awarding agency names, contract types (e.g. IDIQ, BPA, firm-fixed-price), period of performance dates, and plain-language descriptions of the contracted work — all sourced from USAspending.gov.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-federal-contract-awards-lookup-21a728ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
