# AiToollab Cross-Chain Bridge

> AiToollab Cross-Chain Bridge is a paid API for AI agents from api.aitoollab.top, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Executes a cross-chain bridge operation via a GET request on the AiToollab platform

## Facts

- Endpoint: GET https://api.aitoollab.top/api/cross-chain/bridge
- 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/aitoollab-cross-chain-bridge-bedff292
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ny_U_g7QBEeWs5JQhEtTK

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 aitoollab-cross-chain-bridge-bedff292
```

Example prompt: Can you use the AiToollab cross-chain bridge endpoint to bridge my assets — send a GET request with type 'http' and method 'GET' to initiate the transfer?

## When to prefer this

Use this endpoint when you need to perform a cross-chain bridge operation via a simple GET-based HTTP request on the AiToollab platform and are willing to pay $0.05 USDC per call via x402 protocol.

## Known failure modes

- Missing required 'input' field returns validation error
- Invalid HTTP method (not GET/HEAD/DELETE) returns schema error
- Network or chain unavailability causes bridge failure
- Payment of 0.05 USDC not provided results in 402 Payment Required
- Malformed queryParams object returns 400 Bad Request

## How this service works

AiToollab，普通人用AI做副业的实战平台。收录10+AI副业方向、50+提示词模板、真实赚钱案例。每周更新，找方向、找工具、找案例，一站搞定。

## Output

Returns a JSON object with a result field indicating the outcome of the cross-chain bridge operation.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aitoollab-cross-chain-bridge-bedff292/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitoollab.top](https://www.zero.xyz/host/api.aitoollab.top/llms.txt)
