Angle Bridge API

The Bridge API from Angle — 1 operation(s) for bridge.

Operations 1

GET /v1/layerZero Fetch bridge data for a user

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/angle-bridge-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

angle-bridge-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Angle Allowances Bridge API
  description: API to track the Angle Protocol state
servers:
- url: https://api.angle.money
tags:
- name: Bridge
paths:
  /v1/layerZero:
    get:
      summary: Fetch bridge data for a user
      description: This route fetches bridge data for a user from multiple chains.
      tags:
      - Bridge
      parameters:
      - $ref: '#/components/parameters/requiredChainId'
      - $ref: '#/components/parameters/optionalUser'
      - in: query
        name: toChainId
        description: destination of the bridge transaction
        required: false
        schema:
          type: integer
        examples:
          AllBlockchains:
            value: 0
          Ethereum:
            value: 1
          Polygon:
            value: 137
          Optimism:
            value: 10
          Arbitrum:
            value: 42161
          Avalanche:
            value: 43114
      responses:
        '200':
          description: JSON object containing bridge data for the user on different chains.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/bridgeInfo'
components:
  parameters:
    optionalUser:
      name: user
      in: query
      description: User blockchain `address` (optional)
      required: false
      schema:
        type: string
      example: '0xa116f421ff82A9704428259fd8CC63347127B777'
    requiredChainId:
      in: query
      name: chainId
      description: Chain requested
      required: true
      schema:
        type: integer
      examples:
        Ethereum:
          value: 1
        Polygon:
          value: 137
        Optimism:
          value: 10
        Arbitrum:
          value: 42161
        Avalanche:
          value: 43114
  schemas:
    bridgeInfo:
      type: object
      properties:
        chainId:
          type: object
          properties:
            EURA:
              type: object
              properties:
                allowance:
                  type: string
                balance:
                  type: string
                canonicalTokenAddress:
                  type: string
                credit:
                  type: string
                fee:
                  type: null
                fromLimit:
                  type: string
                lzChainId:
                  type: integer
                oftAddress:
                  type: string
                toLimit:
                  type: string
                totalSupply:
                  type: string
            ANGLE:
              type: object
              properties:
                allowance:
                  type: string
                balance:
                  type: string
                canonicalTokenAddress:
                  type: string
                credit:
                  type: string
                fee:
                  type: null
                fromLimit:
                  type: string
                lzChainId:
                  type: integer
                oftAddress:
                  type: string
                toLimit:
                  type: string
                totalSupply:
                  type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic