Authentication

Use bearer tokens to access protected endpoints

Most SchoolSet API endpoints require an API token.

Bearer token

Pass the token in the Authorization header:

1Authorization: Bearer YOUR_API_TOKEN

Example request

$curl https://app.schoolset.io/app/api/v1/students \
> -H "Authorization: Bearer YOUR_API_TOKEN" \
> -H "Accept: application/json"