Skip to main content
POST
/
projects
/
{projectId}
/
addresses
Create address
curl --request POST \
  --url https://api.wavynode.com/v1/projects/{projectId}/addresses \
  --header 'Content-Type: application/json' \
  --header 'x-api-header: <api-key>' \
  --data '
{
  "address": "<string>",
  "description": "<string>"
}
'
{
  "success": true
}

Authorizations

x-api-header
string
header
required

API key from the Wavy Node dashboard. Format: ApiKey {your-api-key}

Path Parameters

projectId
string
required

The project ID

Body

application/json
address
string
required

The on-chain address to monitor

description
string

A description for this address

Response

200 - application/json

Address created

success
boolean