openapi: 3.0.3 info: title: Megaphone Campaigns Exports API description: 'The Megaphone API lets podcast producers and partners manage podcasts, episodes, and advertising on Megaphone by Spotify - an enterprise podcast hosting, distribution, and ad-monetization platform. The v1 API (base https://cms.megaphone.fm/api) covers networks, podcasts, episodes, and legacy Direct Sales resources; a v2 Direct Sales API (base https://cms.megaphone.fm/api/v2) manages advertisers, campaigns, orders, assets, advertisements, and targeting. All requests authenticate with a per-user API token sent as the header `Authorization: Token token=""`, generated under User Settings. List responses paginate via an RFC 5988 Link header (rel="next"). The API is rate limited to 60 requests per minute (1 request per second). Documentation is public, but a token requires a paid Megaphone account. The v1 network/podcast/episode/campaign/order/advertisement paths are confirmed from Megaphone''s docs, the Apiary reference, and the open-source theatlantic/megaphone Python client. The v2 Direct Sales paths and the Metrics/Impressions export paths are honestly modeled from the documented resource descriptions where the exact reference was not publicly retrievable; verify against developers.megaphone.fm before production use.' version: '2.0' contact: name: Megaphone by Spotify url: https://developers.megaphone.fm/ x-support-email: support-megaphone@spotify.com servers: - url: https://cms.megaphone.fm/api description: Megaphone API v1 (networks, podcasts, episodes, legacy Direct Sales) - url: https://cms.megaphone.fm/api/v2 description: Megaphone Direct Sales API v2 (advertisers, campaigns, orders, assets, advertisements, targeting) security: - tokenAuth: [] tags: - name: Exports description: Metrics Export Service and Impressions Export Service (modeled). paths: /metrics_export: get: operationId: exportMetrics tags: - Exports summary: Export metrics (modeled) description: Pull-based bulk export of download and listener metrics via the Metrics Export Service. Path and parameters are modeled from the documented service description. parameters: - name: start in: query required: false schema: type: string format: date - name: end in: query required: false schema: type: string format: date responses: '200': description: A metrics export payload. '401': $ref: '#/components/responses/Unauthorized' /impressions_export: get: operationId: exportImpressions tags: - Exports summary: Export ad impressions (modeled) description: Pull-based bulk export of ad-impression data via the Impressions Export Service. Path and parameters are modeled from the documented service description. parameters: - name: start in: query required: false schema: type: string format: date - name: end in: query required: false schema: type: string format: date responses: '200': description: An impressions export payload. '401': $ref: '#/components/responses/Unauthorized' components: responses: Unauthorized: description: Missing or invalid API token. content: application/json: schema: $ref: '#/components/schemas/Error' schemas: Error: type: object properties: error: type: string message: type: string securitySchemes: tokenAuth: type: apiKey in: header name: Authorization description: 'Per-user API token sent as `Authorization: Token token=""`. Generated on account creation and managed under User Settings; treat as a password and do not reuse across organizations.'