Wormhole wormhole API

The wormhole API from Wormhole — 1 operation(s) for wormhole.

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/wormhole-wormhole-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 email required.

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

OpenAPI Specification

wormhole-wormhole-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: 'Wormhole Guardian API

    This is the API for the Wormhole Guardian and Explorer.

    The API has two namespaces: wormholescan and guardian.

    wormholescan is the namespace for the explorer and the new endpoints. The prefix is /api/v1.

    guardian is the legacy namespace backguard compatible with guardian node API. The prefix is /v1.

    This API is public and does not require authentication although some endpoints are rate limited.

    Check each endpoint documentation for more information.'
  title: Wormholescan Guardian wormhole API
  termsOfService: https://wormhole.com/
  contact:
    name: API Support
    url: https://discord.com/invite/wormholecrypto
    email: info@wormhole.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
host: api.wormholescan.io
basePath: /
schemes:
- https
tags:
- name: wormhole
paths:
  /api/v1/wormhole/assets/secured-tokens:
    get:
      description: Returns a list of tokens secured by Wormhole, including Native Token Transfers and Portal Bridge tokens
      produces:
      - application/json
      tags:
      - wormhole
      operationId: get-secured-tokens
      responses:
        '200':
          description: OK
          schema:
            type: array
            items:
              $ref: '#/definitions/stats.TokenInfoDTO'
        '500':
          description: Internal Server Error
definitions:
  stats.TokenInfoDTO:
    type: object
    properties:
      circulating_supply:
        type: number
      coingecko_id:
        type: string
      fully_diluted_valuation:
        type: number
      image:
        type: string
      market_cap:
        type: number
      platforms:
        type: object
        additionalProperties:
          type: string
      price:
        type: number
      symbol:
        type: string
      total_supply:
        type: number
      total_value_locked:
        type: number
      total_value_transferred:
        type: number
      type:
        $ref: '#/definitions/stats.TokenType'
      volume_15d:
        type: number
      volume_1y:
        type: number
      volume_24h:
        type: number
      volume_30d:
        type: number
      volume_7d:
        type: number
      volume_90d:
        type: number
  stats.TokenType:
    type: string
    enum:
    - NATIVE_TOKEN_TRANSFER
    - PORTAL_TOKEN_BRIDGE
    x-enum-varnames:
    - NativeTokenTransfer
    - PortalTokenBridge