Eranol LogoEranol
BlogCommunityDocumentationPricingSign In

General

OverviewGet Started

Universal

Add IntroAdd OutroAudio to VideoBackground AudioCaptions ApiComposeConcatConvert a video file to MP4Convert Audio to Mp3Convert Audio to wavConvert to JPGConvert to WebMConvert to WebPDenoiseExtract audio track from a videoExtract images from a videoGenerate a GIF from a videoHighlightsImageMergeNotifyOverlayProgress BarReframeRemove SilenceThumbnailTikTokTrimVerifyWatermarkZoom

General

DeleteImage StatusStatusTikTok StatusFFmpeg Results

Need help?

Contact Support

Verify

GET

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" }

Guide

Overview

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" }

Example Response

{
  "message": "API key is valid.",
  "success": "true"
}

Endpoint

Send your requests to the following URL using the specified HTTP method.

GET https://eranol.com/api/v1/verify

Headers

Include the following headers with every request. Your API key is required for authentication.

Content-Type:application/json
x-api-key:YOUR_API_KEY

Request Body

Send the following JSON payload in the request body. Adjust the values to match your use case.

json
{}

Example Request

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.

bash
curl -X GET "https://eranol.com/api/v1/verify" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

Below is an example of a successful JSON response from this endpoint.

json
{
  "message": "API key is valid.",
  "success": "true"
}

Response Status

A successful request will return one of the following HTTP status codes.

200 OKRequest was successful and data is returned in the response body.
401 UnauthorizedMissing or invalid API key.
429 Too Many RequestsRate limit exceeded. Try again later.