# Agent Internet Runtime SDK Batch Capability Query

> Agent Internet Runtime SDK Batch Capability Query is a paid API for AI agents from api.agentinternetruntime.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Batch-queries capability metadata (standard or execution) for up to 50 domains simultaneously, returning a stream of discovered agent-callable capabilities per domain.

## Facts

- Endpoint: POST https://api.agentinternetruntime.com/v1/sdk/batch
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-internet-runtime-sdk-batch-capability-query-59645a54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bNfp1MabH-wUIkN4CUmGX

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 agent-internet-runtime-sdk-batch-capability-query-59645a54 -d '<json body>'
```

Example prompt: Using Agent Internet Runtime, look up the available capabilities for these domains — openai.com, stripe.com, and coinbase.com — and include execution-level capabilities so I can see what actions my agent can actually take on each one.

## When to prefer this

Use this endpoint when you need to discover or enumerate agent-callable capabilities across multiple domains in a single call (up to 50). Prefer this over the single-domain endpoint when your agent needs to compare or aggregate capabilities across many sites at once. Choose 'execution' include type when you need actionable endpoints, or 'standard' for lighter metadata discovery.

## Known failure modes

- More than 50 domains submitted — request rejected
- Invalid include enum value (not 'standard' or 'execution') — validation error
- Domain not found or no capabilities indexed — empty result for that domain
- Payment not provided or insufficient — 402 Payment Required
- Malformed targets array — schema validation error
- Stream connection interrupted mid-response — partial results

## How this service works

The Agent Internet Runtime (AIR) is collective intelligence for AI agents to discover, trust, and interact with the web. Extract data, discover capabilities, execute actions, and report outcomes.

## Output

A Server-Sent Events stream containing discovered capability results per domain, including standard or execution-level capability metadata (names, descriptions, endpoints, pricing, schemas) for each queried domain — up to 50 domains per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "targets": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "domain": {
      "type": "string"
     },
     "include": {
      "enum": [
       "standard",
       "execution"
      ],
      "type": "string"
     }
    }
   },
   "description": "Domains to query (max 50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "http",
 "schema": {
  "type": "object",
  "description": "Server-Sent Events stream with capability results per domain"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-internet-runtime-sdk-batch-capability-query-59645a54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentinternetruntime.com](https://www.zero.xyz/host/api.agentinternetruntime.com/llms.txt)
