Pontiac Wiki Pontiac Wiki

Authentication

Bidder API Campaign Tutorial

  • Tutorial Overview
  • Authentication
  • Creating a New Advertiser
  • Uploading a Creative
  • Creating a Pixel
  • Creating a Campaign
  • Creating a Line
  1. Home
  2. API Documentation
  3. Bidder API Campaign Tutorial
  4. Authentication

Authentication

Before making requests to the Pontiac Bidder API, authenticate with Pontiac to retrieve an authorization token.

Send a POST request to: https://api.pontiac.media/auth

Request

curl -X POST "https://api.pontiac.media/auth" \
  -H "Content-Type: application/json" \
  -d '{
    "username": "user1",
    "password": "myPassword"
  }'

Response

A successful response will include an authToken. Pass this token in the auth header for all subsequent requests.

{
  "timestamp": "2026-09-01T12:00:00Z",
  "response": {
    "authToken": "YOUR_AUTH_TOKEN"
  },
  "accountStatus": true,
  "seatId": 1000
}

The returned token must be included in the auth header for subsequent requests.

For example, to retrieve an existing Bidder Advertiser:

curl -X GET \
  -H "auth: YOUR_AUTH_TOKEN" \
  "https://api.pontiac.media/rtb/advertisers/1234"

If you switch seats during a session, the authorization token will change. Use the new token returned by the seat-switch request for subsequent API calls.

© 2026 Pontiac Wiki Sec · All Rights Reserved · Developed by RDK

  • Contact Us
  • Privacy Policy
  • Terms & Conditions
  • Pontiac.media