GET
/
check
curl --request GET \
  --url 'http://localhost:2003/api/v1/check' \
  --header 'x-api-key: <your-api-key>'
{
  "success": true,
  "data": "ok"
}

Use this endpoint to verify if your API key is valid and working correctly.

curl --request GET \
  --url 'http://localhost:2003/api/v1/check' \
  --header 'x-api-key: <your-api-key>'
{
  "success": true,
  "data": "ok"
}

Authorizations

x-api-key
string
header
required

Response

200 - application/json
Successful response
success
boolean
data
string
Example:

"ok"