Skip to main content
GET
/
projects
/
{projectId}
/
addresses
List addresses
curl --request GET \
  --url https://api.wavynode.com/v1/projects/{projectId}/addresses \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": 123,
      "address": "<string>",
      "description": "<string>"
    }
  ]
}

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

Response

200 - application/json

List of addresses

success
boolean
data
object[]