Links
Comment on page

Authentication

All of Knowledgator's APIs are hosted on the Rapid API platform, which facilitates easy access to our services. The Rapid API handles all API key management and payment processes on our behalf.
To begin using our services, follow these easy steps:

Generate API Key

To generate an API key on the Rapid API you must first establish a project on the platform. Creating an application generates a unique API key (X-RapidAPI-Key) specifically tied to that application. This key is essential, as it must be included in the HTTP header of your API requests to authenticate your access.
To delve deeper into API keys and their management, please refer to Rapid API’s official documentation on keys and key rotation.
Ensure that you do not share your API key publicly, keep it private.

Integrate API Key

To authenticate your API requests, ensure that your RapidAPI key is incorporated in the HTTP header of each request, specifically within the X-RapidAPI-Key field.
Incorporate your API key in all your API requests by including it in an HTTP header, as follows:
// X-RapidAPI-Key: YOUR_RAPIDAPI_KEY
import requests
url = "https://web2meaning.p.rapidapi.com/parse"
headers = {
"content-type": "application/json",
"X-RapidAPI-Key": '''your RapidApi key''',
"X-RapidAPI-Host": "web2meaning.p.rapidapi.com",
}
payload = {
"url": "https://knowledgator.com"
}
response = requests.post(url, json=payload, headers=headers)
By adhering to these guidelines, you ensure a secure and seamless integration with Knowledgator's APIs.

API Subscription

To start using a particular API you need to subscribe to it, please navigate to our page on Rapid API, choose the specific API you are interested in, and click the "subscribe" button. Choose the plan that best aligns with your needs (a free trial option is available).

Monitor API Usage

To keep track of your API usage, please proceed to the developer's dashboard page.