API Key (Catalog API-only)

The API key authentication method gives access to the Catalog API and is read-only. You can use it to retrieve information about a Page.

Most API actions such as sending Orders, retrieving Subscriptions, adding Identities, or retrieving Abandoned Baskets require the OAuth Bearer Token authentication method.

API Key Generation

To get an API key, log-in to your Limio account, go to Profile > Developers > Limio Keys and hit the 'Generate New' button. This will create a new key linked to your Limio environment.

Each Limio account is currently limited to 2 public API keys. If what you are building requires more, please contact [email protected].

Sending Requests

Now you have an API key, you can start to read data required by your website or application from the Catalog API.

Catalog API

You will need to use the key in the header with every request to our API. Below is an example fetch to retrieve some offers:

fetch('/api/example', {
    headers: {Authorization: "YOUR_API_KEY_HERE"}
}).then(res => res.json())

Deleting Keys

If you wish to delete an existing key, this can be done by selecting the 'Delete' button next to the key you wish to delete in the developer area of the catalog.

Last updated

Was this helpful?