# AgentToll Government Contract Fit Brief

> AgentToll Government Contract Fit Brief is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Analyzes a company or capability profile against federal contracting opportunities to produce a fit verdict and best-match score

## Facts

- Endpoint: POST https://agenttoll.dev/paid/gov/contract-fit-brief
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-government-contract-fit-brief-9a0fb0b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tcHEZ6TIqen1AQDwbp0_E

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 agenttoll-government-contract-fit-brief-9a0fb0b8 -d '<json body>'
```

Example prompt: Can you run a government contract fit brief on my company — we do cloud infrastructure security consulting, hold a FedRAMP authorization, and our primary NAICS is 541519 — and tell me whether we're a possible fit and what our best-fit score is?

## When to prefer this

Choose this endpoint when you need a quick, scored assessment of whether a specific company or capability set is viable for federal government contracting, particularly when you want a structured verdict and ranked opportunity matches rather than a raw SAM.gov search. Ideal for consultants, business development agents, and founders exploring the GovCon market who want an AI-ready structured brief rather than raw procurement data.

## Known failure modes

- Insufficient company profile data returns low-confidence verdict
- Unsupported or unrecognized NAICS codes may reduce match quality
- Ambiguous capability descriptions produce lower scores with fewer top matches
- Rate limiting or payment failure returns 402 error requiring USDC top-up
- Malformed POST body returns 400 validation error

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object containing a product label ('Government Contract Fit Brief'), a summary with a verdict string (e.g. 'possible_fit') and a numeric best_fit_score (0-100), plus a list of top matching federal contract opportunities with relevance details.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 5
      },
      "agency": {
       "type": "string",
       "maxLength": 120
      },
      "keyword": {
       "type": "string",
       "maxLength": 120
      },
      "company_domain": {
       "type": "string",
       "maxLength": 160
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": "Government Contract Fit Brief",
  "summary": {
   "verdict": "possible_fit",
   "best_fit_score": 52
  },
  "top_matches": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-government-contract-fit-brief-9a0fb0b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
