Skip to main content
The Wavy Node API lets you analyze blockchain addresses, monitor wallets, and manage compliance workflows for your projects.

Base URL

https://api.wavynode.com/v1

Authentication

All endpoints require your API key in the x-api-header HTTP header:
curl -H "x-api-header: ApiKey your-api-key" \
  https://api.wavynode.com/v1/chains
Get your API key from the Wavy Node dashboard.
Some API routes require you to provide the projectId in the URL. You can find your project’s projectId in the dashboard under Project Settings.

Response format

All responses use JSON with a consistent structure:
FieldTypeRequiredDescription
successbooleanyesWhether the request was successful
dataanynoResponse payload
messagestringnoAdditional context or error message

Error example

{
  "success": false,
  "error": "invalid_request",
  "message": "The api key is invalid"
}

Available endpoints