> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.levanta.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Creator Connections Reports

> List your creator connection reports. Reports are unique per campaign, creator.creatorConnectionsId, date, and asin



## OpenAPI

````yaml https://app.levanta.io/api/seller/v1/openapi.json get /creator-connections/reports
openapi: 3.1.0
info:
  version: 1.0.0
  title: Levanta Seller API
  description: >-
    Authorize all requests with an API key in the Authorization header as the
    second token. E.g. Authorization -> "Bearer {api_key}".
servers:
  - url: https://app.levanta.io/api/seller/v1
security: []
externalDocs:
  url: https://app.levanta.io/seller/api-docs
paths:
  /creator-connections/reports:
    get:
      tags:
        - Creator Connections
      summary: List Creator Connections Reports
      description: >-
        List your creator connection reports. Reports are unique per campaign,
        creator.creatorConnectionsId, date, and asin
      operationId: SellerListCreatorConnectionsReports
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 500
            default: 100
            description: The maximum number of items to return
          required: false
          description: The maximum number of items to return
          name: limit
          in: query
        - schema:
            type: string
            maxLength: 512
            description: >-
              The cursor returned from the last request, if omitted the first
              page will be returned
          required: false
          description: >-
            The cursor returned from the last request, if omitted the first page
            will be returned
          name: cursor
          in: query
        - schema:
            type: string
            format: date-time
            description: 'Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ'
          required: true
          description: 'Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ'
          name: start
          in: query
        - schema:
            type: string
            format: date-time
            description: 'Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ'
          required: true
          description: 'Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ'
          name: end
          in: query
        - schema:
            type: string
            description: Comma-delimited list of UUIDs representing an array
          required: false
          description: Comma-delimited list of UUIDs representing an array
          name: brand_ids
          in: query
        - schema:
            type: string
            description: Comma-delimited list of UUIDs representing an array
          required: false
          description: Comma-delimited list of UUIDs representing an array
          name: campaign_ids
          in: query
        - schema:
            type: string
            description: >-
              Comma-delimited list of ASINs representing an array. Example:
              B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]
          required: false
          description: >-
            Comma-delimited list of ASINs representing an array. Example:
            B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]
          name: asins
          in: query
        - schema:
            type: string
            enum:
              - amazon.com
            default: amazon.com
          required: false
          name: marketplace
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  reports:
                    type: array
                    items:
                      type: object
                      properties:
                        asin:
                          type: string
                        date:
                          type: string
                          format: date-time
                          description: >-
                            Date in ISO Format without offset (UTC):
                            YYYY-MM-DDTHH:mm:ss.SSSZ
                        marketplace:
                          type: string
                          enum:
                            - amazon.com
                          description: Amazon US marketplace.
                        clicks:
                          type: number
                        conversions:
                          type: number
                        commission:
                          type: number
                          description: >-
                            Commission earned in creator connections. IMPORTANT:
                            this commission is not paid out through Levanta
                        sales:
                          type: number
                        campaign:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            name:
                              type: string
                          required:
                            - id
                            - name
                        brand:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            name:
                              type: string
                          required:
                            - id
                            - name
                        creator:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            name:
                              type: string
                            creatorConnectionsId:
                              type: string
                          required:
                            - id
                            - name
                            - creatorConnectionsId
                      required:
                        - asin
                        - date
                        - marketplace
                        - clicks
                        - conversions
                        - commission
                        - sales
                        - campaign
                        - brand
                        - creator
                  cursor:
                    type:
                      - string
                      - 'null'
                    description: >-
                      The cursor to use for the next request, if empty there are
                      no more items to return
                required:
                  - reports
                  - cursor
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                    enum:
                      - Unauthorized
                required:
                  - status
                  - message
        '422':
          description: Input Validation Failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 422
                  message:
                    type: string
                    enum:
                      - Input Validation Failed
                required:
                  - status
                  - message
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````