Sovrn Reporting API

The reporting API from Sovrn — 1 operation(s) for reporting.

Operations 1

GET /reporting/advertising/publishers/{publisherId}/

Documentation

Specifications

Other Resources

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/sovrn-reporting-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 email required.

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

OpenAPI Specification

sovrn-reporting-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sovrn Advertising Performance Reporting API
  version: 2.70.7
  description: Harvested verbatim from the OpenAPI definitions Sovrn publishes inside its Sovrn Developer Center reference pages at https://developer.sovrn.com/. Operations sharing this info/servers block were merged into one document by API Evangelist; operation content is unmodified.
  x-source-title: Adv Custom API
servers:
- url: https://api.sovrn.com
  description: API server
tags:
- name: reporting
paths:
  /reporting/advertising/publishers/{publisherId}/:
    get:
      tags:
      - reporting
      description: Get custom reporting data for a publisher
      parameters:
      - schema:
          type: string
        in: query
        name: start
        required: true
        description: The start date, in ISO-8601 format (yyyy-mm-DDTHH:MM:ssZ), of the time range, inclusive
      - schema:
          type: string
        in: query
        name: end
        required: true
        description: The end date, in ISO-8601 format (yyyy-mm-DDTHH:MM:ssZ), of the time range, exclusive
      - schema:
          type: string
        in: query
        name: metrics
        required: true
        description: A comma-separated list of metrics to use in the report query
      - schema:
          type: string
        in: query
        name: dimensions
        required: true
        description: A comma-separated list of dimensions to use in the report query
      - schema:
          type: string
        in: query
        name: granularity
        required: true
        description: The level of granularity for returned data. Possible values are "hour", "day", "month".
      - schema:
          type: string
        in: query
        name: domain
        required: false
        description: A comma-separated list of domain names used to filter results
      - in: query
        name: bundleId
        schema:
          type: string
        description: A comma-separated list of bundle IDs used to filter results
      - schema:
          type: string
        in: query
        name: auction
        required: false
        description: A comma-separated list of auction types used to filter results. Possible values are "googleOb", "amazonTam", "waterfall", "headerBidding", "serverToServer", "nimbus", "springserve", "publica", "bidmachine"
      - schema:
          type: number
        in: path
        name: publisherId
        required: true
      - in: query
        name: propertyType
        schema:
          type: string
        description: The property type by which to filter the results by. Possible values are "web" or "app"
      security:
      - cookieAuth: []
      - apiAuth: []
      responses:
        '200':
          description: Custom report data
          content:
            application/json:
              schema:
                description: Custom report data
        '204':
          description: Requested data is not available
          content:
            application/json:
              schema:
                description: Requested data is not available
                type: string
        '400':
          description: Required information is missing or invalid
          content:
            application/json:
              schema:
                description: Required information is missing or invalid
                type: string
        '401':
          description: Authentication information is missing or invalid
          content:
            application/json:
              schema:
                description: Authentication information is missing or invalid
                type: object
                required:
                - error
                properties:
                  error:
                    type: string
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                description: Unauthorized
                type: string
        '500':
          description: Unexpected server error
          content:
            application/json:
              schema:
                description: Unexpected server error
                type: string
components:
  securitySchemes:
    apiAuth:
      type: apiKey
      in: header
      name: x-api-key