Skip to main content
GET
curl \
  -X GET \
  -H "Authorization: Bearer $apikey" \
  https://api.eyequant.com/v2/
{
  "message": "Welcome to the EyeQuant API. You have been authenticated successfully and the service is operational."
}
Check service availability and verify that your authentication credentials are correct. On success it returns a short confirmation message.
Because this endpoint is lightweight and requires authentication, it is a convenient way to verify your API key — for example, in a CI pipeline or at the start of a batch job, before issuing analysis requests.
message
string
A human-readable confirmation that authentication succeeded and the service is operational.
curl \
  -X GET \
  -H "Authorization: Bearer $apikey" \
  https://api.eyequant.com/v2/
{
  "message": "Welcome to the EyeQuant API. You have been authenticated successfully and the service is operational."
}