AppsFlyer Account Integration API

The Account Integration API from AppsFlyer — 1 operation(s) for account integration.

Operations 2

GET /integrations List integrations
POST /integrations Set integration

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/appsflyer-account-integration-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

appsflyer-account-integration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AdRevenue Account Integrations Account Integration API
  description: API for configuring or changing partner integrations.
  version: 1.0.0
servers:
- url: https://hq1.appsflyer.com/api/adrevenue/v1.0
  description: api server - production
security:
- bearerAuth: []
tags:
- name: Account Integration
paths:
  /integrations:
    get:
      tags:
      - Account Integration
      summary: List integrations
      responses:
        '200':
          description: Integration returned
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  $ref: '#/components/schemas/Integration'
        '401':
          $ref: '#/components/responses/MissingAuthorizationToken'
    post:
      tags:
      - Account Integration
      summary: Set integration
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - integrations
              properties:
                integrations:
                  type: array
                  minItems: 1
                  maxItems: 1000
                  items:
                    $ref: '#/components/schemas/Integration'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/Success'
        '400':
          description: Various errors
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                InvalidJson:
                  summary: Invalid json
                  description: Invalid json
                  value:
                    message: Incorrect JSON format. Please verify and resubmit
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                MissingAppId:
                  summary: Missing app_id
                  description: Missing app_id
                  value:
                    message: 'integration 0: missing mandatory field ''app_id'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                MissingNetwork:
                  summary: Missing network
                  description: Missing network
                  value:
                    message: 'integration 0, app_id=''com.config_1.test'', network='''': invalid ''Network'' field. value length must be at least 1 runes'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                UnsupportedNetwork:
                  summary: Unsupported network
                  description: Unsupported network
                  value:
                    message: 'integration 0, appID=''com.config_1.test'', network=''made-up'': unsupported network'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                MissingCredentials:
                  summary: Missing credentials
                  description: Missing credentials (when credentials are required for product)
                  value:
                    message: 'integration 0, appID=''com.config_5.test'', network=''tapdaq'': missing ''attribution_user_level'' credentials for defined partner network'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                Invalid credentials:
                  summary: Invalid credentials
                  description: Invalid credentials
                  value:
                    message: 'integration 0, appID=''com.config_4.test'', network=''chartboosts2s_int'': invalid credentials - missing field: user_signature'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                MissingEnabledField:
                  summary: Missing enabled field
                  description: Missing enabled field
                  value:
                    message: 'integration 0, app_id=''com.config_3.test'', network=''tapdaq_int'': invalid ''Enabled'' field. value is required'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                MissingSourceEvent:
                  summary: Missing source_event
                  description: Missing source_event (only for attribution_app_level)
                  value:
                    message: 'integration 0, appID=''com.config_4.test'', network=''chartboosts2s_int'': missing field: source_event'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                UnsupportedProduct:
                  summary: Unsupported product
                  description: Unsupported product per requested network
                  value:
                    message: 'integration 0, appID=''com.config_4.test'', network=''chartboosts2s_int'': network does not support ''attribution_user_level'' integration type'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                AppIdNotFound:
                  summary: App Id Not Found
                  description: app_id is not under the account linked to the authorization token
                  value:
                    message: 'integration 0: app_id ''com.config.test'' not permitted for provided token'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                IntegrationsOffBounds:
                  summary: Off bounds
                  description: number of integration is outside limt range (1-1000)
                  value:
                    message: 'app_id='''', network='''': invalid ''Integrations'' field. value must contain between 1 and 1000 items, inclusive'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
                InvalidSourceEvent:
                  summary: invalid source_event
                  description: invalid source_event
                  value:
                    message: 'integration 0, appID=''com.config_4.test'', network=''chartboosts2s_int'': invalid source event suffix ''something_monetized'
                    request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
        '401':
          $ref: '#/components/responses/MissingAuthorizationToken'
        '403':
          $ref: '#/components/responses/AppIdNotFound'
components:
  responses:
    MissingAuthorizationToken:
      description: Missing authorization token
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
            example:
              error: Missing authorization header
    Success:
      description: Valid request
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              request_id:
                type: string
            example:
              message: Successfully processed 1 integration updates
              request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
    AppIdNotFound:
      description: app_id is not under the account linked to the authorization token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
            example:
              message: 'integration 0: app_id ''com.config.test'' not permitted for provided token'
              request_id: f1c0af47-bb7a-4e25-a261-d94d07689bb8
  schemas:
    Odeeo:
      type: object
      properties:
        api_key:
          type: string
    Fyber:
      type: object
      properties:
        network_app_id:
          type: string
        client_id:
          type: string
        client_secret:
          type: string
    Vungle:
      type: object
      properties:
        app_id:
          type: string
        application_id:
          type: string
    AdMost:
      type: object
      properties:
        network_app_id:
          type: string
        token:
          type: string
    Chartboost:
      type: object
      properties:
        network_app_id:
          type: string
        user_signature:
          type: string
        user_id:
          type: string
    Error:
      properties:
        message:
          type: string
        request_id:
          type: string
    Applovin_MAX:
      type: object
      properties:
        report_key:
          type: string
        package_name:
          type: string
    Topon:
      type: object
      properties:
        network_app_id:
          type: string
        publisher_key:
          type: string
    Inmobi:
      type: object
      properties:
        api_key:
          type: string
        user_id:
          type: string
        network_app_id:
          type: string
    ByteDance_China:
      type: object
      properties:
        network_app_id:
          type: string
        secure_key:
          type: string
        account_id:
          type: string
    Product:
      description: The products block lists the products & integration types that the customer wishes to configure for the defined partner `network`.
      required:
      - name
      - enabled
      type: object
      properties:
        name:
          type: string
          enum:
          - attribution_app_level
          - attribution_user_level
          - attribution_sdk_level
          - attribution_ad_impression
          - attribution_sdk_and_user_level
          example: attribution_app_level
        enabled:
          type: string
          enum:
          - true
          - false
          example: true
        source_event:
          type: string
    IronSource:
      type: object
      properties:
        refresh_token:
          type: string
        network_app_id:
          type: string
        secret_key:
          type: string
        username:
          type: string
    Tradplusad:
      type: object
      properties:
        network_app_id:
          type: string
        api_key:
          type: string
    TikTok_for_business:
      type: object
      properties:
        network_app_id:
          type: string
        secure_key:
          type: string
        account_id:
          type: string
    Unity:
      type: object
      properties:
        api_key:
          type: string
        source_ids:
          type: string
    AdColony:
      type: object
      properties:
        app_id:
          type: string
        user_credentials:
          type: string
    Integration:
      title: An array describing the ad revenue integrations for which all the hierarchical data is defined.
      required:
      - app_id
      - network
      - credentials
      - products
      type: object
      properties:
        app_id:
          type: string
          description: The `app_id` for which the integration is defined
        network:
          type: string
          enum:
          - adcolony_int
          - admost_int
          - applovin_int
          - applovinmax_int
          - appodeal_int
          - bytedance_int
          - bytedanceglobal_int
          - chartboosts2s_int
          - sponsorpay_int
          - inmobi_int
          - ironsource_int
          - mintegral_int
          - odeeo_int
          - tapdaq_int
          - tapjoy_int
          - toponad_int
          - tradplus_int
          - unityads_int
          - vungle_int
          - yandexdirect_int
          example: adcolony_int
        event_name:
          type: string
        credentials:
          oneOf:
          - $ref: '#/components/schemas/AdColony'
          - $ref: '#/components/schemas/AdMost'
          - $ref: '#/components/schemas/Applovin'
          - $ref: '#/components/schemas/Applovin_MAX'
          - $ref: '#/components/schemas/Appodeal'
          - $ref: '#/components/schemas/ByteDance_China'
          - $ref: '#/components/schemas/Chartboost'
          - $ref: '#/components/schemas/Fyber'
          - $ref: '#/components/schemas/Inmobi'
          - $ref: '#/components/schemas/IronSource'
          - $ref: '#/components/schemas/Mintegral'
          - $ref: '#/components/schemas/Tapdaq'
          - $ref: '#/components/schemas/Tapjoy'
          - $ref: '#/components/schemas/TikTok_for_business'
          - $ref: '#/components/schemas/Topon'
          - $ref: '#/components/schemas/Tradplusad'
          - $ref: '#/components/schemas/Unity'
          - $ref: '#/components/schemas/Vungle'
          - $ref: '#/components/schemas/Odeeo'
        products:
          type: array
          items:
            $ref: '#/components/schemas/Product'
    Applovin:
      type: object
      properties:
        api_key:
          type: string
        filter_package_name:
          type: string
    Appodeal:
      type: object
      properties:
        api_key:
          type: string
        user_id:
          type: string
        network_app_id:
          type: string
        app_key:
          type: string
    Mintegral:
      type: object
      properties:
        network_app_id:
          type: string
        secret:
          type: string
        skey:
          type: string
    Tapjoy:
      type: object
      properties:
        network_app_id:
          type: string
        api_key:
          type: string
    Tapdaq:
      type: object
      properties:
        network_app_id:
          type: string
        report_key:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT