Skip to main content
GET
/
projects
/
{projectId}
/
keys
List API keys
curl --request GET \
  --url https://api.wavynode.com/v1/projects/{projectId}/keys \
  --header 'x-api-header: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "label": "<string>",
      "key": "<string>"
    }
  ]
}

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

Response

200 - application/json

List of API keys

success
boolean
data
object[]