# Agent Internet Runtime SDK Capabilities Query

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

Returns the list of SDK capabilities available for a given domain, optionally including execution details like selectors and macros

## Facts

- Endpoint: GET https://api.agentinternetruntime.com/v1/sdk/capabilities
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-agentinternetruntime-com-2079ddeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2XrIK-nZnXa0UvnSwR58E

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 api-agentinternetruntime-com-2079ddeb
```

Example prompt: What SDK capabilities does the Agent Internet Runtime support for github.com? Include execution details with selectors and macros so I can see which ones have desktop macro support.

## When to prefer this

Use this endpoint when an AI agent needs to discover what SDK capabilities and automation actions are available for a specific web domain at runtime, especially when planning browser automation or agentic workflows that require knowledge of available macros and selectors for that domain.

## Known failure modes

- Payment required (402) if no valid x402 payment or session ticket is provided
- Unknown or unsupported domain returns empty capabilities array
- Invalid 'include' enum value returns validation error
- Network timeout or service unavailability returns 5xx error

## How this service works

SDK capabilities query ($0.01/request direct, or $0.003/request via Session Ticket at /v1/billing/tickets)

## Output

A JSON object with a success flag and a data object containing the queried domain and an array of capability objects, each with a name, confidence score, description, and a boolean indicating whether a desktop macro is available.

## Example request

```json
{
 "domain": "github.com",
 "include": "execution"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain to query capabilities for (query param)"
  },
  "include": {
   "enum": [
    "standard",
    "execution"
   ],
   "type": "string",
   "description": "Include execution details with selectors and macros"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "http",
 "schema": {
  "type": "object",
  "properties": {
   "data": {
    "type": "object",
    "properties": {
     "domain": {
      "type": "string"
     },
     "capabilities": {
      "type": "array",
      "items": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "confidence": {
         "type": "number"
        },
        "description": {
         "type": "string"
        },
        "hasDesktopMacro": {
         "type": "boolean"
        }
       }
      }
     }
    }
   },
   "success": {
    "type": "boolean"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-agentinternetruntime-com-2079ddeb/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)
