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-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "label": "<string>",
      "key": "<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 API keys

success
boolean
data
object[]