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-key: <api-key>' \
  --data '
{
  "address": "<string>",
  "description": "<string>",
  "foreign_user_id": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.wavynode.com/llms.txt

Use this file to discover all available pages before exploring further.

Once registered, Wavy Node monitors this address and sends notifications to your webhook when it interacts with risky or blacklisted wallets.

Authorizations

x-api-key
string
header
required

Enter the full value with the ApiKey prefix. Example: ApiKey wavy_your-api-key. The prefix is required for authentication.

Path Parameters

projectId
string
required

The project ID

Body

application/json
address
string
required

The on-chain address to monitor

description
string | null

A description for this address

foreign_user_id
string

The user ID in your system. This links the wallet to a user for compliance reports and webhook notifications.

Response

200 - application/json

Address created

success
boolean