# Government Contract Award Detail Lookup

> Government Contract Award Detail Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail record for a single government contract award by its entityId (e.g. 'award:CONT_AWD_...')

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/awards/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/government-contract-award-detail-lookup-b83f04fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sXoTVsdWMG34j9wifUrX-

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 government-contract-award-detail-lookup-b83f04fd
```

Example prompt: Can you pull up the stored details for government contract award ID 'award:CONT_AWD_GS00F026DA_47QRAA21F0021_FA873221F0026_FA873215D0018'?

## When to prefer this

Use this endpoint when you have a specific government contract award entityId and need to retrieve its full stored detail record. Prefer this over listing endpoints when you already know the award identifier. Best for agents that have previously discovered an award ID from a search or monitoring feed and now need the complete detail object.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- Unknown award ID that is not tracked returns no entity data
- Malformed entityId format (not following 'award:CONT_AWD_...' pattern) may return null entity
- Payment failure (402) if x402 micropayment not processed
- Rate limiting if called too frequently

## How this service works

Stored detail for a single award (entityId like 'award:CONT_AWD_...').

## Output

Returns a JSON object containing the stored entity details for the requested contract award, including award metadata, status, and procurement information keyed under an 'entity' field. If no ID is provided, returns a list of all tracked award entities.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/government-contract-award-detail-lookup-b83f04fd/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)
