Verify your api key Case Status Body Valid key 200 { success: true, message: "API key is valid." } Missing key 401 { success: false, message: "API key required..." } Invalid/inactive key 401 { success: false, message: "Invalid or inactive API key" }
Verify your api key Case Status Body Valid key 200 { success: true, message: "API key is valid." } Missing key 401 { success: false, message: "API key required..." } Invalid/inactive key 401 { success: false, message: "Invalid or inactive API key" }
{
"message": "API key is valid.",
"success": "true"
}
Send your requests to the following URL using the specified HTTP method.
GET https://eranol.com/api/v1/verifyInclude the following headers with every request. Your API key is required for authentication.
Send the following JSON payload in the request body. Adjust the values to match your use case.
{}Use the following cURL command to make a request to this API endpoint. Replace YOUR_API_KEY with your actual API key from the dashboard.
curl -X GET "https://eranol.com/api/v1/verify" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json"Below is an example of a successful JSON response from this endpoint.
{
"message": "API key is valid.",
"success": "true"
}A successful request will return one of the following HTTP status codes.