Public Keys (Read-Only API)

This API is for getting campaign or asset information from the Limio app where you know the specific item that you require, for example, you can get details about a campaign provided you know the tag.

Public Key Generation

Getting a key is really simple. Just 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 and can now be used to retrieve catalog data.

Each Limio account is currently limited to 2 public API keys. If what you are building requires more, please contact support@limio.com.

Sending Requests

Now you have an API linked to your Limio account, you can start to pull data required by your website or application.

All you need to do is include your public key in the header with every request to our API with the key 'Authorization'. 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.

Please be aware that this cannot be undone and will require you to update any references to this key that are currently being used with a new API key.

Last updated