# Interzoid Get Government Contracts

> Interzoid Get Government Contracts is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Retrieves government contract data for a given company name, including active contract value, top agencies, and notable awards.

## Facts

- Endpoint: GET https://api.interzoid.com/getgovcontracts
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-government-contracts-d97c0d2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X4bAso4-GHadLVorGA21g

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 interzoid-get-government-contracts-d97c0d2d
```

Example prompt: Can you look up the government contract data for Lockheed Martin — I want to know their active contract value, which agencies they work with, and any notable awards?

## When to prefer this

Use this endpoint when you need structured federal government contract data for a specific company, including contract value totals, agency relationships, and notable awards. Ideal for competitive intelligence, vendor due diligence, B2G market analysis, or enriching CRM/ERP records with government contract context.

## Known failure modes

- Company name not found — returns empty or null fields
- Invalid or missing 'lookup' query parameter — returns error code
- Insufficient credits — returns credits exhausted error
- Ambiguous company name matching multiple entities — may return partial or mismatched data
- Network timeout or service unavailability — HTTP 5xx error

## How this service works

Retrieve US government contract information for a company including active contracts, agencies, contract values, and award history.

## Output

A JSON object containing the company name, total active contract value (e.g. '$45 billion'), top contracting agencies (e.g. 'Department of Defense, NASA'), a notable award description, and a success/error code with remaining credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Microsoft Corporation"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Company name to retrieve government contract data for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "ActiveValue": "$45 billion",
  "CompanyName": "Lockheed Martin",
  "TopAgencies": "Department of Defense, NASA, Department of Homeland Security",
  "NotableAward": "F-35 Joint Strike Fighter program"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-government-contracts-d97c0d2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
