API Authentication
Authentication - API Key
How to use
curl --location --request POST '<ENDPOINT URL>' \
--header 'x-api-key: <API KEY>' \
--header 'Content-Type: application/json' \
--data-raw '<JSON BODY>'import requests
res = requests.post(
'<ENDPOINT URL>',
json={
# JSON BODY
},
headers={
'x-api-key': '<API KEY>'
}
)Last updated