Getting an access token¶
You want to integrate AcademicLabs into your platform, awesome!
First step is getting your access token. To do that send an email to sales@academiclabs.com. We will contact you as soon as possible.
Info
It is also strongly advised creating an account on app.academiclabs.com before contacting us.
API Key¶
AcademicLabs’s Web API v1 supports the use of API Keys. API Keys allow you to use another method of authentication separate from your account username and password. API Keys add an additional layer of security for your account and can be assigned specific permissions to limit which areas of your account they may be used to access. You will be provided by AcademicLabs with an API-key.
Authorization Header¶
To use keys, you must set a plain text header named Authorization
with the contents of the header being Bearer XXX
where XXX is your API-key.
Example¶
GET https://sandbox.academiclabs.com/api/v1/ HTTP/1.1 Authorization: Bearer Your.API.Key-HERE
curl -X "GET" "https://sandbox.academiclabs.com/api/v1/" -H "Authorization: Bearer Your.API.Key-HERE" -H "Content-Type: application/json"