Tealium Auth API

The Auth API from Tealium — 1 operation(s) for auth.

Operations 1

POST /auth/accounts/{account}/profiles/{profile} Generate bearer token #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tealium-auth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tealium-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tealium Authentication Auth API
  description: Provides JWT bearer token generation for Tealium v3 APIs. Exchange a username (email address) and API key for a time-limited JWT bearer token used to authenticate all other Tealium v3 API calls. Tokens are valid for 30 minutes. The response also includes a region-specific host for subsequent API calls. API keys are obtained from Tealium iQ Tag Management and are not used directly in API calls — only for token generation.
  version: '3.0'
  contact:
    name: Tealium Support
    url: https://docs.tealium.com/api/v3/getting-started/authentication/
servers:
- url: https://platform.tealiumapis.com/v3
  description: Tealium platform API base URL
tags:
- name: Auth
paths:
  /auth/accounts/{account}/profiles/{profile}:
    post:
      operationId: generateBearerToken
      summary: Generate bearer token
      description: Exchanges a username (email address) and API key for a JWT bearer token and a region-specific host. The returned token is valid for 30 minutes and should be reused across API calls rather than regenerated on each request. Use the returned host value for all subsequent API calls to ensure regional routing.
      parameters:
      - name: account
        in: path
        required: true
        schema:
          type: string
        description: Tealium account name
      - name: profile
        in: path
        required: true
        schema:
          type: string
        description: Tealium profile name
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - username
              - key
              properties:
                username:
                  type: string
                  format: email
                  description: User email address associated with the Tealium account
                key:
                  type: string
                  description: API key from Tealium iQ Tag Management
            example:
              username: user@example.com
              key: abc123apikey
      responses:
        '200':
          description: Bearer token generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthResponse'
              example:
                token: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1c2VyQGV4YW1wbGUuY29tIn0.kqkpj8vE
                host: us-east-1-platform.tealiumapis.com
        '400':
          description: Bad request — missing username or key
        '401':
          description: Unauthorized — invalid credentials
      tags:
      - Auth
components:
  schemas:
    AuthResponse:
      type: object
      required:
      - token
      - host
      properties:
        token:
          type: string
          description: JWT bearer token valid for 30 minutes. Use in Authorization header as "Bearer {token}"
        host:
          type: string
          description: Region-specific host for subsequent API calls (e.g., us-east-1-platform.tealiumapis.com). Always use this host rather than the generic platform.tealiumapis.com for regional routing.