GET
/
v1
/
test
curl --request GET \
  --url https://api.pyannote.ai/v1/test \
  --header 'Authorization: Bearer <token>'
{
  "status": "OK",
  "message": "Test connection successful"
}

This is a test endpoint. Use it to test your API key and ensure that it is working correctly.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
status
string
required

Status of the test

Example:

"OK"

message
string
required

Message of the test

Example:

"Test connection successful"