Public API

The same routing brain, exposed as JSON.

Resolve a fare before sending users to an explorer. Version 1 returns the chosen destination, all candidates, route path, chain metadata, explorer metadata, and the redirect URL.

Resolve by query

GET /api/v1/resolve?value={input}
{
  "request": "GET /api/v1/resolve?value=0x...",
  "response": {
    "apiVersion": "1",
    "status": "redirect",
    "input": "0x...",
    "redirectUrl": "https://etherscan.io/tx/0x...",
    "chain": {
      "id": "ethereum",
      "name": "Ethereum"
    },
    "explorer": {
      "id": "etherscan",
      "name": "Etherscan"
    },
    "candidates": [
      {
        "chainId": "ethereum",
        "objectType": "tx",
        "confidence": "strong",
        "method": "live-probe"
      }
    ]
  }
}

Endpoints

50 chain destinations / generated OpenAPI