Documentation Index
Fetch the complete documentation index at: https://docs.targeter.tech/llms.txt
Use this file to discover all available pages before exploring further.
Welcome to the Targeter API
The Targeter REST API is the partner-facing HTTP API for Targeter: obtain a JWT and create or resolve campaigns from external systems. As an approved partner with issued API credentials, you can integrate on behalf of your clients. Current REST API version: 1.1.0.Base URL
All API requests are made to your client-specific endpoint:{client_slug} is your unique client identifier (e.g., storhaug).
Partner Authentication
The Targeter API uses JWT (JSON Web Token) authentication for trusted third-party partners. Protected routes expectAuthorization: Bearer <token> (obtain the token from POST /auth/token). Here’s how it works:
- Receive Issued Credentials: Get your API key and secret issued by the Targeter team for your approved partnership
- Exchange for Token: Use your issued credentials to get a JWT from
/auth/token(tokens expire after one hour) - Include in Requests: Add the token to the
Authorizationheader for protected routes