Authentication

Falcon API authentication details

Each endpoint within Falcon API requires an API key which is generated and issued to each client by our API team. The authentication gateway validates the API Key and processes the request as per the request if the user is successfully authenticated.

📘

API Key Retrieval

  • Please contact the Falcon API support team to retrieve your API key to test out the API within the documentation.
  • The production API Key will be delivered as a part of Falcon Solution to the relevant customers.

🚧

Securing API Key

Your API Key carries many privileges, so be sure to keep them secure! Do not share the key in publicly accessible areas such as GitHub, client-side code, and so forth.

API Key Usage

Each endpoint under Falcon API requires an Authorization header along with a Basic TOKEN. Here is what a typical cURL looks like with an Authorization header.

curl --location --request GET 'https://stage.tab.kitecash.in/open-api/falcon/v1/user/9636626685' \
--header 'Authorization: Basic AmlzeWJsoJHkpc3libA==' \