# Agent Internet Runtime Batch Actions

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

Execute batches of AI agent actions — including web extraction, capability discovery, and task automation — via a streaming Server-Sent Events response

## Facts

- Endpoint: POST https://api.agentinternetruntime.com/v1/batch
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-internet-runtime-batch-actions-d9854e3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EQlUKLq2I8fZwc_arwD9P

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-batch-actions-d9854e3c -d '<json body>'
```

Example prompt: Use the Agent Internet Runtime to batch-process these three tasks for me: scrape the product listings from example-store.com, check what APIs are available at partner-site.com, and report back any errors — stream the results as they come in.

## When to prefer this

Choose this endpoint when an AI agent needs to execute multiple heterogeneous web actions in a single call and wants to receive streaming results incrementally. Ideal for orchestration scenarios where the agent must fan out across discovery, extraction, and interaction tasks simultaneously. Prefer this over single-action endpoints when latency efficiency and batch throughput matter, or when building agentic workflows that combine web data extraction with capability discovery in one round-trip.

## Known failure modes

- Payment not authorized or insufficient USDC balance — 402 Payment Required
- Malformed batch action request — 400 Bad Request with error event in stream
- Target web resource unreachable or blocked — error event with connectivity details
- Capability not found or unsupported action type — error event with explanation
- Rate limit exceeded — 429 or error event in stream
- Partial batch failure — some results return successfully while others yield error events
- Streaming connection dropped mid-response — incomplete event stream

## 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 of JSON objects with event types (start, processing, result, error, done) and associated data payloads for each action in the batch, allowing the agent to process results incrementally as they arrive.

## Response schema (JSON Schema)

```json
{
 "type": "http",
 "schema": {
  "type": "object",
  "properties": {
   "events": {
    "type": "array",
    "items": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      },
      "event": {
       "enum": [
        "start",
        "processing",
        "result",
        "error",
        "done"
       ],
       "type": "string"
      }
     }
    }
   }
  },
  "description": "Server-Sent Events stream"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-internet-runtime-batch-actions-d9854e3c/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)
