To access the API endpoints, you need to authenticate your requests. Below are the available authentication methods:

1

Bearer Token Authentication

Include your access token in the Authorization header using the “Bearer” scheme.

Authorization: Bearer your_access_token_here
2

SKULabsToken Authentication

Similar to Bearer Token Authentication, but use the “SKULabsToken” scheme in the Authorization header.

Authorization: SKULabsToken your_access_token_here
3

Basic Authentication

You can also use Basic Authentication by providing your API key as the password. The username can be any string.

curl -u "skulabs:your_access_token_here" https://api.skulabs.com/
When you’re ready to start using our API, replace ”your_access_token_here” with your actual access token.