Authentication

How to authenticate to the lancer kit API

Authentication flow

To use the Lancerkit API, you'll need to use an API key. To have an API key, you must first be sure to have created an account on our application: https://lancerkit.com

Your API key may be found in the Lancerkit application under the "Settings > Integrations" menu.

After you have your API key, you may authenticate to the API by putting it in the HTTP header "Authorization" of your API queries. The Authorization header should look like "Authorization: Bearer [your-api-key]".

This provides a safe and dependable method of accessing your Lancerkit data, guaranteeing that only authorized people may use the API. This article will walk you through the process of authenticating to the Lancerkit API using your API key so you can start developing sophisticated integrations and custom apps with ease This article will walk you through the process of authenticating to the Lancerkit API using your API key so you can start developing sophisticated integrations and custom apps with ease.

For instance, you can try the following call:

List all the contacts

GET https://api.Lancerkit.com/contacts

List all the contacts in the application

Headers

{
    "name"="Wilson",
    "owner": {
        "id": "sha7891bikojbkreuy",
        "name": "Samuel Passet",
    "species": "Dog",}
    "breed": "Golden Retriever",
}

Good to know: If your API key is incorrect, or, if your authorization header is not present, all your requests will fail with a HTTP 401 or 403 status

Last updated