AppLovin · Example Payload

Applovin Axon Campaign Management List Example

AdvertisingMobileAdTechApp MonetizationMediationUser AcquisitionMarketing TechnologyConversion Tracking

Applovin Axon Campaign Management List Example is an example object payload from AppLovin, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationrequestresponse

Example Payload

Raw ↑
{
  "operation": "listCampaigns",
  "request": {
    "method": "GET",
    "url": "https://api.ads.axon.ai/manage/v1/campaign/list",
    "query": {
      "account_id": "acct_98765",
      "page": 1,
      "size": 50
    },
    "headers": {
      "Authorization": "Bearer CAMPAIGN_MGMT_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "id": 67890,
        "name": "MatchThree US Q2 UA",
        "type": "APP",
        "status": "LIVE",
        "platform": "IOS",
        "itunes_id": 1234567890,
        "start_date": "2026-05-05T00:00:00Z",
        "end_date": "2026-06-30T00:00:00Z",
        "bidding_strategy": "TARGET_GOAL_WITH_CPI_BILLING",
        "budget": {
          "daily_budget_for_all_countries": "6000"
        },
        "goal": {
          "goal_type": "CPI",
          "goal_value_for_all_countries": "0.50"
        },
        "tracking": {
          "tracking_method": "ADJUST",
          "impression_url": "https://view.adjust.com/impression/abc123",
          "click_url": "https://app.adjust.com/abc123"
        },
        "targeting": [
          {
            "country_code": "US",
            "region_codes": ["CA", "NY", "TX"]
          }
        ]
      }
    ]
  }
}