Skip to main content

1. Mint an API key

Sign in to the Console and create an API key. Keep the key secret and never commit it to source control. See Authentication for how the key is presented on each request.

2. Check the API is reachable

GET /api/v1/health is unauthenticated, so you can call it without a key to confirm the API is reachable.

3. Make an authenticated call

Once you have a key, send it in the Authorization header as Bearer <key>. The example below builds a session information packet (SIP) for a session by posting to POST /api/v1/sip/build with a session_id.
Replace YOUR_API_KEY with the key you minted in the Console, and YOUR_SESSION_ID with a session you have created. The base URL https://api.tensorpro.ai is the evaluation endpoint.

Next steps

Authentication

The full API key scheme and which endpoints are unauthenticated.

API Reference

Browse every endpoint and try it in the playground.