Opera Publisher Report API

Publisher revenue and delivery reporting.

Operations 2

POST /openapi/report/v1/query Query publisher report data #
GET /openapi/reports Get inventory performance report (legacy token-in-query) #

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/opera-publisherreport-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

opera-publisherreport-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opera Ads Publisher (OFP) Report Publisher Report API
  version: v1
  description: Publisher-side reporting for the Opera Ads / OFP platform. Exposes a measurement-and-dimension query endpoint returning revenue, requests, responses, impressions, clicks, CTR, eCPM, fill rate and show rate for a publisher's apps and placements, plus the older token-in-query inventory report. Transcribed by API Evangelist from the public Opera Ads documentation at https://doc.adx.opera.com/publisher/ofp/report and https://doc.adx.opera.com/adx/ssp/report — endpoints, fields, and error codes are taken from those pages; contact Opera Ads to obtain a token.
  contact:
    name: Opera Ads
    url: https://doc.adx.opera.com/
  x-apievangelist-method: generated
  x-apievangelist-source: https://doc.adx.opera.com/publisher/ofp/report
servers:
- url: https://ofp.adx.opera.com
  description: Opera Ads publisher platform (OFP) host
tags:
- name: PublisherReport
  description: Publisher revenue and delivery reporting.
paths:
  /openapi/report/v1/query:
    post:
      tags:
      - PublisherReport
      operationId: queryPublisherReport
      summary: Query publisher report data
      description: Retrieve publisher report data with flexible filtering and grouping. The request must include a `day` filter. Measurements mix dimensions (day, publisher_id, app_id, slot_id, country_code, traffic_type, sdk_ad_format, os_type) and metrics (costs, cost_ecpm, requests, responses, impressions, clicks, ctr, cpc, fillrate, showrate).
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublisherReportQuery'
            example:
              filters:
              - name: day
                value:
                - '20260106'
                - '20260113'
              measurements:
              - name: day
                sort: desc
              - name: costs
                sort: ''
              - name: impressions
                sort: ''
              offset: 0
              limit: 50
      responses:
        '200':
          description: Report rows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublisherReportResponse'
        '400':
          description: Bad Request — invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized — invalid or missing token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden — insufficient scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Too Many Requests — retry with exponential backoff
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /openapi/reports:
    get:
      tags:
      - PublisherReport
      operationId: getInventoryReport
      summary: Get inventory performance report (legacy token-in-query)
      description: Older SSP-facing report endpoint that returns inventory and performance data for a date range. Authentication is a `token` query parameter rather than a bearer header. `revenue` is in US dollars; `-1` means the figure is still being updated.
      parameters:
      - name: token
        in: query
        required: true
        description: Report token issued by Opera Ads.
        schema:
          type: string
      - name: start_date
        in: query
        required: true
        description: Start date (YYYY-MM-DD).
        schema:
          type: string
          format: date
      - name: end_date
        in: query
        required: true
        description: End date (YYYY-MM-DD).
        schema:
          type: string
          format: date
      - name: split
        in: query
        required: false
        description: When true, return split (broken-down) data.
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Inventory report rows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InventoryReportResponse'
        '400':
          description: Invalid token or parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        code:
          type: integer
          description: Error code — 0 means success.
        msg:
          type: string
          description: Error message.
        message:
          type: string
          description: Error message (alternate field name used by some endpoints).
    PublisherReportQuery:
      type: object
      required:
      - filters
      - measurements
      - limit
      properties:
        filters:
          type: array
          description: Filter conditions; must include a `day` filter.
          items:
            $ref: '#/components/schemas/Filter'
        measurements:
          type: array
          description: Metrics and dimensions to retrieve.
          items:
            $ref: '#/components/schemas/Measurement'
        offset:
          type: integer
          description: Pagination offset.
          default: 0
        limit:
          type: integer
          description: Number of records to return.
    Measurement:
      type: object
      required:
      - name
      properties:
        name:
          type: string
          description: Metric or dimension name.
        sort:
          type: string
          description: Sort direction — "desc", "asc", or "" for no sorting.
          enum:
          - desc
          - asc
          - ''
    InventoryReportResponse:
      type: object
      properties:
        list:
          type: array
          items:
            $ref: '#/components/schemas/InventoryReportRow'
        total_count:
          type: integer
    Filter:
      type: object
      required:
      - name
      - value
      properties:
        name:
          type: string
          description: Filter field name, e.g. "day", "app_id", "slot_id".
        value:
          description: Filter value — an array for a date range or an ID list.
    InventoryReportRow:
      type: object
      properties:
        day:
          type: integer
          description: Date as YYYYMMDD.
        app_id:
          type: string
        app_name:
          type: string
        ad_tag_id:
          type: string
        ad_tag_name:
          type: string
        country_code:
          type: string
        format:
          type: string
          description: Ad format, e.g. "Native".
        impression_count:
          type: integer
        request_count:
          type: integer
        revenue:
          type: number
          description: Revenue in US dollars; -1 means the figure is still updating.
    PublisherReportResponse:
      type: object
      properties:
        message:
          type: string
          description: Status message.
        rows:
          type: array
          description: Report rows; fields depend on the requested measurements.
          items:
            type: object
            additionalProperties: true
        statusCode:
          type: integer
          description: Status code — 0 means success.
        total:
          type: integer
          description: Total number of matching records.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Auth token issued by Opera Ads, passed as `Authorization: Bearer <token>`. Obtained from the Opera Ads publisher console.'