# Tako Tools Description

> Tako Tools Description is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.023/call, status unknown (last checked 2026-09-15).

Returns descriptions of Tako's search tool capabilities and the data topics it can query, including available indexes and example metrics per category.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tako/v1/tako_tools_description
- Price: $0.023/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tako-tools-description-8432ab33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OsEgSaPZIEFGjtGsH-PDB

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 tako-tools-description-8432ab33
```

Example prompt: Before I start querying Tako, can you show me all the data topics and indexes it supports — like what finance, health, or sports metrics I can search across?

## When to prefer this

Use this endpoint before issuing Tako search queries to understand what data topics and indexes are available. Ideal for agents that need to validate whether a particular domain (e.g. health, sports, climate) is searchable before committing to a query. Prefer this over guessing index names or querying blindly.

## Known failure modes

- Invalid index_ids parameter returns error or empty results
- Service unavailable returns HTTP 5xx
- Payment failure (x402) blocks access if USDC not provided
- Specific index_id not found returns empty or partial response

## How this service works

Get descriptions of Tako search tool capabilities and available data topics. Returns what types of data Tako can search across (finance, economics, demographics, sports, politics, climate, health) with example metrics for each category. Useful for understanding what queries Tako can answer before searching.

## Output

A structured description of Tako's search tool capabilities, including all available data categories (finance, economics, demographics, sports, politics, climate, health), the index IDs for each, and example metrics or query types supported within each category.

## 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": {
      "index_ids": {
       "type": "string",
       "description": "Comma-separated index IDs to get descriptions for specific indexes. Omit to get all available tool descriptions."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tako-tools-description-8432ab33/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
