Authentication API (Login API)
Tellius provides backend APIs that allow advanced custom development, full UI control, and tight integration into your applications. Before calling any secured Tellius API (such as Insights APIs or Search APIs), you must first authenticate and obtain a temporary access token.
Endpoint
Request example
Response example
Session-based vs Token-based Authentication
When calling the Login API, you can optionally include a "session": true
parameter in the request body.
Tellius server creates a session and manages authentication via cookies. This is recommended for browser-based apps where automatic cookie handling is preferred. No need to manually send Authorization
header after login.
If omitted, by default, Tellius returns a JWT access token. Recommended for mobile apps, API integrations, where you must manually send the JWT in the Authorization: Bearer <token>
header for each API call.
Last updated
Was this helpful?