Skip to main content
1

Create a scoped API key

In Hobbes, open Settings → Organization → API keys. Create a key with the Sessions scope. Only organization admins can create or revoke keys.Copy the token when it appears. Hobbes shows the plaintext token once and stores only its hash.
2

Store the token

Keep the token in a secret manager or environment variable. Never commit it to source control or expose it in browser code.
3

Retrieve qualified sessions

Request the ten most recent sessions whose latest qualification result is qualified.
4

Follow pagination

List responses include the current limit, offset, and total matching records. Request the next page while offset + limit < total.
Save the X-Request-ID response header in integration logs. It identifies the exact request if you need help diagnosing a failure.

Next steps

Authentication and scopes

Create narrowly scoped keys and rotate them safely.

Pagination and filtering

Build complete and restartable data synchronization jobs.