# GoCreative Government Awards Lookup

> GoCreative Government 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-09).

Retrieves government contract and grant award data for a given identifier using official sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/gov-awards/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-government-awards-lookup-631b8666
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__QoVgBjxG_oZ1FogPVvp9

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-government-awards-lookup-631b8666
```

Example prompt: Look up government award details for contract number DTFA0119C00038 — I need to know the recipient, award amount, and issuing agency.

## When to prefer this

Use this endpoint when you need to look up a specific government contract or grant award by its identifier and want authoritative data sourced from official U.S. government records. Prefer this over general web search when you need structured, machine-readable award data including amounts, recipients, and agency details at $0.05 per call with no API key required.

## Known failure modes

- Invalid or unknown award ID returns 404 or empty result
- Malformed input string causes 400 bad request
- Payment not received results in 402 Payment Required before data is returned
- Rate limits or upstream government data source unavailability may cause 503
- Award ID format mismatch (e.g. using grant format for contract endpoint) returns no results

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns structured data about a specific government award including recipient name, award amount, awarding agency, period of performance, contract or grant type, and related metadata sourced from official U.S. government 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",
      "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-government-awards-lookup-631b8666/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)
