# AMNT Tool Scout

> AMNT Tool Scout is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Searches OpenSea's tool registry for working, battle-tested AI tools filtered to only those that have actually received real payments

## Facts

- Endpoint: POST https://www.amnt.io/api/os-tools/tool-scout
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amnt-tool-scout-c882b07e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mbvmaT7qAqex4Ulc4vw7q

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 amnt-tool-scout-c882b07e -d '<json body>'
```

Example prompt: Search the AMNT Tool Scout for proven tools that can check whether an ERC-20 token is a honeypot — return up to 10 results, only tools someone has actually paid to use, and nothing over $0.05.

## When to prefer this

Use this endpoint when an AI agent needs to dynamically discover the right specialized tool for a sub-task at runtime, especially when you want to avoid untested or abandoned tools. Prefer it over manually curated lists when the task domain is niche or evolving, and when cost constraints are important.

## Known failure modes

- No tools found matching the task description — try broader or different keywords
- provenOnly=true filters out all results for niche tasks with no usage history
- maxPriceUsd set too low eliminates all matching tools
- task string too long (over 200 characters) causes validation error
- Registry may have stale or outdated tool listings

## How this service works

Tool Scout - Find a tool on OpenSea's registry that actually works, and skip the thousands that don't.

## Output

Returns a list of matching tools from the registry, each including the tool name, description, tags, price, and whether it has been proven through actual paid usage. Results are filtered by the provenOnly flag and maxPriceUsd if provided, and limited to the specified count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "task": {
   "type": "string",
   "examples": [
    "check whether an ERC-20 token is a honeypot"
   ],
   "maxLength": 200,
   "description": "Plain words. Searched against every registered tool's name, tags and description."
  },
  "limit": {
   "type": "integer",
   "default": 8,
   "maximum": 25,
   "minimum": 1,
   "description": "How many to return"
  },
  "provenOnly": {
   "type": "boolean",
   "default": true,
   "description": "Keep only tools somebody has actually paid to call. On by default — most of the registry has never been used."
  },
  "maxPriceUsd": {
   "type": "string",
   "examples": [
    "0.05"
   ],
   "maxLength": 12,
   "description": "Drops anything dearer. Leave empty for no limit."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amnt-tool-scout-c882b07e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
