Search
K
Comment on page

API Docs

Wormhole provides an HTTP API a developer can use to retrieve details about VAAs or the Guardian Network, among other things.
The primary API for wormhole is a read only HTTP server used to retrieve details about VAAs or the Guardian Network.

Documentation

See this page for details on the paths and parameters available.

Interactive documentation

A playground to try out some endpoints is available here and is great for quick experimentation.

Try it

RPC endpoints

Network
URL
Testnet
https://api.testnet.wormholescan.io/api/v1/
Mainnet
https://api.wormholescan.io/api/v1/

Examples

Testnet
Mainnet
Get the first page of VAAs for Testnet Polygon (chain id: 5)
curl -s 'https://api.testnet.wormholescan.io/api/v1/vaas/5' \
-H 'accept: application/json'
Get the first page of VAAs for Polygon (chain id: 5)
curl -s 'https://api.wormholescan.io/api/v1/vaas/5' \
-H 'accept: application/json'

Guardian API

There is also a Guardian Public RPC endpoint which the SDK currently uses.
Last modified 3mo ago