Authorization
To authorize your application's requests to the Loom AI API you must first obtain an access token by requesting an user's authorization or by authenticating directly using your application's credentials.
Once you received an access token, you can authorize requests by adding the Authorization
header using token_type
and access_token
provided by the authentication response as value.
Example
If your application requests the Loom AI API with missing, invalid or expired credentials, it will receive a HTTP 401 Unauthorized
response.
If your application requests a Loom AI API resource that it is not authorized to access, for example due to a missing authorization scope, it will receive a HTTP 403 Forbidden
response.
See Status for more details on API status codes.
Last updated