API Authentication

API Key

  • TAGGER API is a REST API based on an HTTP Protocol, which requires an Authentication Key to use.

  • Authentication Key can be retrieved by clicking on Email -> Account Info on the top right corner from OMNIOUS STUDIO.

How to Use

  • Make a request to the API by adding the key to the Header of HTTP Request as x-api-key as shown below.

Example. cURL x-api-key Header

curl --location --request POST '<ENDPOINT URL>' \
--header 'x-api-key: <API KEY>' \
--header 'Content-Type: application/json' \
--data-raw '<JSON BODY>'

Example.

Python x-api-key Header

import requests
res = requests.post(
    '<ENDPOINT URL>', 
    json={
        'some': 'value as dict'
    }, 
    headers={
        'x-api-key': '<API KEY>'
    }
)

Last updated

Was this helpful?