Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/across-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/across-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/across-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/across-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/across-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "source": "Across API (across.to/api, live)",
        "service": "across-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "Price a bridge transfer — fees, output amount, fill time (token=USDC, from=ethereum, to=arbitrum, amount=1000).",
            "GET /v1/chains": "All supported chains.",
            "GET /v1/limits": "Min/max bridgeable amount for a route (token=USDC, from=ethereum, to=arbitrum).",
            "GET /v1/routes": "Supported bridge routes (from=ethereum, to=arbitrum, token=USDC, limit=100)."
        },
        "description": "Live cross-chain bridge data from Across, one of the largest intent-based bridges, which moves USDC, ETH, WBTC and other assets between Ethereum and its rollups (Arbitrum, Base, Optimism, Polygon, zkSync, Linea, Blast, Scroll …) using a relayer network and a single unified liquidity pool. The routes endpoint lists every supported bridge route; the quote endpoint prices a bridge transfer — relayer capital fee, gas fee, LP fee, total fee, amount received and estimated fill time; the limits endpoint returns the min and max bridgeable amount for a route; the chains endpoint lists supported chains. Live, no key, nothing stored. Distinct from DEX, lending, staking and price feeds — this is Across's own cross-chain bridge fee, route and fill-time layer.",
        "route_count": 1494,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:04.018Z",
        "request_id": "c4fa1553-7a4e-46ea-8774-d41d178cc290"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}