# Influencer

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /{version}/api/get/influencer-analysis/list:
    post:
      summary: Influencer
      deprecated: false
      description: |-
        - Track and manage influencer marketing campaigns
        - Rate limits: 5 requests per second.
        - version: v2-4-2.
      tags:
        - Public API/Tracking links
      parameters:
        - name: version
          in: path
          description: ''
          required: true
          example: v2-4-2
          schema:
            type: string
        - name: ApiKey
          in: header
          description: ''
          required: true
          example: '{{ApiKey}}'
          schema:
            type: string
            default: '{{ApiKey}}'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                start_date:
                  type: string
                  description: >-
                    The start date range of the event in ISO format, e.g.
                    1970-01-01, the time zone should be consistent with your
                    store settings.
                end_date:
                  type: string
                  description: >-
                    The end date of the event in ISO format, e.g. 1970-01-01,
                    the time zone should be consistent with your store
                    settings.If you want to see the data for 1970-01-01, please
                    enter 1970-01-02.
                page:
                  type: integer
                  description: The min is 1.
                page_size:
                  type: integer
                  description: The range is 1 to 100.
              required:
                - start_date
                - end_date
                - page
                - page_size
              x-apifox-orders:
                - start_date
                - end_date
                - page
                - page_size
            example:
              start_date: '2025-10-28'
              end_date: '2026-01-06'
              page: 1
              page_size: 10
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: 1:success; < 0:failed
                  message:
                    type: string
                    description: message
                  data:
                    type: object
                    properties:
                      total:
                        type: integer
                        description: 'total '
                      page_size:
                        type: integer
                        description: page size
                      records:
                        type: array
                        items:
                          type: object
                          properties:
                            influencer_name:
                              type: string
                              description: influencer name
                            influencer_campaign:
                              type: string
                              description: influencer campaign
                            influencer_platform:
                              type: string
                              description: influencer platform
                            influencer_discount_code:
                              type: string
                              description: influencer discount code
                            influencer_spend:
                              type: integer
                              description: influencer spend
                            influencer_created_at:
                              type: string
                              description: influencer created at
                            total_users:
                              type: integer
                              description: total users
                            new_users:
                              type: integer
                              description: new users
                            clicks:
                              type: integer
                              description: clicks
                            purchase:
                              type: integer
                              description: purchase
                            purchase_conversion_value:
                              type: integer
                              description: purchase conversion value
                            add_to_cart:
                              type: integer
                              description: add to cart
                            add_to_cart_conversion_value:
                              type: integer
                              description: add to cart conversion value
                            collection_view:
                              type: integer
                              description: collection view
                            search_submit:
                              type: integer
                              description: search submit
                          x-apifox-orders:
                            - influencer_name
                            - influencer_campaign
                            - influencer_platform
                            - influencer_discount_code
                            - influencer_spend
                            - influencer_created_at
                            - total_users
                            - new_users
                            - clicks
                            - purchase
                            - purchase_conversion_value
                            - add_to_cart
                            - add_to_cart_conversion_value
                            - collection_view
                            - search_submit
                    required:
                      - total
                      - page_size
                      - records
                    x-apifox-orders:
                      - total
                      - page_size
                      - records
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 1
                message: Service succeed
                data:
                  total: 1
                  page_size: 10
                  records:
                    - influencer_name: XQ
                      influencer_campaign: CUST-1223
                      influencer_platform: tiktok
                      influencer_discount_code: ''
                      influencer_spend: 0
                      influencer_created_at: '2025-12-23 06:27:26'
                      total_users: 2
                      new_users: 1
                      clicks: 2
                      purchase: 0
                      purchase_conversion_value: 0
                      add_to_cart: 1
                      add_to_cart_conversion_value: 4.42
                      collection_view: 1
                      search_submit: 0
          headers: {}
          x-apifox-name: Success
      security: []
      x-apifox-folder: Public API/Tracking links
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7934002/apis/api-427629973-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://data-api.test.attribuly.com
    description: test
  - url: https://data.api.attribuly.com
    description: prod
security: []

```
