AppLovin Experiments API

Ad unit A/B experiment management

Operations 4

GET /ad_unit_experiment/{ad_unit_id} Get Ad Unit Experiment #
POST /ad_unit_experiment/{ad_unit_id} Upsert Ad Unit Experiment #
GET /ad_unit_experiment/{ad_unit_id}/{segment_id} Get Ad Unit Experiment Waterfall #
POST /ad_unit_experiment/{ad_unit_id}/{segment_id} Update Ad Unit Experiment Waterfall #

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/applovin-experiments-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

applovin-experiments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AppLovin Axon Campaign Management Ad Units Experiments API
  version: v1
  x-generated-from: documentation
  x-source-url: https://support.axon.ai/en/app-discovery/api/axon-campaign-management-api/
  x-last-validated: '2026-05-05'
  description: 'REST endpoints used to programmatically manage AppLovin AppDiscovery

    (Axon) campaigns, creative sets, and creative assets. All endpoints

    require an `Authorization` header with the Campaign Management API key

    and an `account_id` query parameter. Rate limit: 1,000 requests per 60

    seconds (HTTP 429 on overflow).

    '
  contact:
    name: AppLovin Support
    url: https://support.axon.ai
servers:
- url: https://o.applovin.com/mediation/v1
  description: AppLovin MAX mediation management host
security:
- bearerAuth: []
tags:
- name: Experiments
  description: Ad unit A/B experiment management
paths:
  /ad_unit_experiment/{ad_unit_id}:
    get:
      operationId: getAdUnitExperiment
      summary: Get Ad Unit Experiment
      tags:
      - Experiments
      parameters:
      - $ref: '#/components/parameters/AdUnitId'
      responses:
        '200':
          description: Experiment configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdUnitExperiment'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: upsertAdUnitExperiment
      summary: Upsert Ad Unit Experiment
      description: 'Create, update, promote, or deprecate an ad unit experiment. To

        create, omit or null the `id` field. To promote or deprecate, set

        `promote: true` or `deprecate: true`.

        '
      tags:
      - Experiments
      parameters:
      - $ref: '#/components/parameters/AdUnitId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdUnitExperiment'
      responses:
        '200':
          description: Created or updated experiment.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdUnitExperiment'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ad_unit_experiment/{ad_unit_id}/{segment_id}:
    get:
      operationId: getAdUnitExperimentWaterfall
      summary: Get Ad Unit Experiment Waterfall
      tags:
      - Experiments
      parameters:
      - $ref: '#/components/parameters/AdUnitId'
      - $ref: '#/components/parameters/SegmentId'
      responses:
        '200':
          description: Experiment waterfall.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Waterfall'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: updateAdUnitExperimentWaterfall
      summary: Update Ad Unit Experiment Waterfall
      tags:
      - Experiments
      parameters:
      - $ref: '#/components/parameters/AdUnitId'
      - $ref: '#/components/parameters/SegmentId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Waterfall'
      responses:
        '200':
          description: Updated experiment waterfall.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Waterfall'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    AdUnitExperiment:
      type: object
      properties:
        id:
          type: string
        ad_unit_id:
          type: string
        experiment_name:
          type: string
        promote:
          type: boolean
        deprecate:
          type: boolean
        ad_network_settings:
          type: array
          items:
            $ref: '#/components/schemas/AdNetworkSetting'
      required:
      - experiment_name
    AdNetworkAdUnit:
      type: object
      properties:
        ad_network_ad_unit_id:
          type: string
        country_targeting_type:
          type: string
          enum:
          - INCLUDE
          - EXCLUDE
        countries:
          type: array
          items:
            type: string
        cpm:
          type: number
    Error:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
      required:
      - code
    Waterfall:
      type: object
      properties:
        ad_unit_id:
          type: string
        segment_id:
          type: string
        ad_network_settings:
          type: array
          items:
            $ref: '#/components/schemas/AdNetworkSetting'
        bid_floors:
          type: array
          items:
            $ref: '#/components/schemas/BidFloor'
    AdNetworkSetting:
      type: object
      properties:
        ad_network:
          type: string
        ad_network_ad_units:
          type: array
          items:
            $ref: '#/components/schemas/AdNetworkAdUnit'
        cpm:
          type: number
        country_targeting_type:
          type: string
          enum:
          - INCLUDE
          - EXCLUDE
        countries:
          type: array
          items:
            type: string
    BidFloor:
      type: object
      properties:
        country_group_name:
          type: string
        cpm:
          type: number
        countries:
          type: object
          additionalProperties:
            type: number
  responses:
    Unauthorized:
      description: Missing or invalid Api-Key header.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Validation error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    AdUnitId:
      name: ad_unit_id
      in: path
      required: true
      description: Ad unit identifier.
      schema:
        type: string
    SegmentId:
      name: segment_id
      in: path
      required: true
      description: Segment identifier scoped under the ad unit.
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Campaign Management API key passed in the `Authorization` header.