# AutomateIndex AgentToll – JSON Decision Brief

> AutomateIndex AgentToll – JSON Decision Brief is a paid API for AI agents from www.automateindex.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns a structured, agent-ready JSON decision brief for a given product URL listed on AutomateIndex

## Facts

- Endpoint: GET https://www.automateindex.com/automateindex/json
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/automateindex-agenttoll-json-decision-brief-41af740a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dnJ7jeHCzU5TIDu0yGZlv

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 automateindex-agenttoll-json-decision-brief-41af740a
```

Example prompt: Pull the AutomateIndex agent-ready decision brief for the product at https://www.automateindex.com/tools/zapier and give me the summary and analysis records in structured JSON.

## When to prefer this

Choose this endpoint when you need structured, machine-readable decision intelligence about a specific product listed on AutomateIndex, especially when your agent needs to parse analysis records, source citations, and agent product contract metadata programmatically. Prefer this over the Markdown sibling endpoint when downstream processing or comparison logic requires JSON rather than human-readable text.

## Known failure modes

- Missing or invalid 'url' or 'product' query parameters returns an error
- URL pointing to a non-existent or unlisted product may return empty records
- Payment not completed (x402 protocol) results in a 402 Payment Required response
- Malformed URL input may cause schema validation failure
- Rate limiting or network issues may cause transient failures

## How this service works

AutomateIndex WWW agent-ready decision brief · approved Agent Product v2

## Output

A structured JSON object containing a title, canonical URL, publisher, summary, license info, agent product metadata (version, slug, kind, contract hash), and an array of analysis records with inputs, findings, questions, and analysis IDs — plus source URLs used to generate the brief.

## 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": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url",
      "product"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "product": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "$ref": "https://automateindex.com/schemas/agent-product/v1",
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/automateindex-agenttoll-json-decision-brief-41af740a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.automateindex.com](https://www.zero.xyz/host/www.automateindex.com/llms.txt)
