Skip to main content

API Authentication

The Lumyri API uses access token to authenticate requests. You have to sign in first to get permission access our services.

tip
curl --location --request GET 'https://api-v1-stg.lumyri.com' \
--header 'Authorization: Bearer $ACCESS_TOKEN' \
--header 'Content-Type: application/json' \

Authentication to the API is performed via HTTP Basic Auth. Provide your access token as the basic auth username value.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.