> ## 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 BRB Reports

> List brand referral bonus estimates for a given date range [start, end], bucketed by date.
                The difference in time between start and end date must be less than or equal to 90 days
                Dates must be specified in ISO format with no offset (UTC), format: "yyyy-MM-ddTHH:mm:ss.SSSZ".



## OpenAPI

````yaml https://app.levanta.io/api/seller/v1/openapi.json get /reports/brb
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:
  /reports/brb:
    get:
      tags:
        - Reports
      summary: List BRB Reports
      description: >-
        List brand referral bonus estimates for a given date range [start, end],
        bucketed by date.
                        The difference in time between start and end date must be less than or equal to 90 days
                        Dates must be specified in ISO format with no offset (UTC), format: "yyyy-MM-ddTHH:mm:ss.SSSZ".
      operationId: ListBRBReports
      parameters:
        - 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
            enum:
              - amazon.com
              - amazon.co.uk
              - amazon.com.mx
              - amazon.ca
              - amazon.de
              - amazon.es
              - amazon.fr
              - amazon.it
              - amazon.nl
            default: amazon.com
            description: Represents an Amazon marketplace.
          required: false
          description: Represents an Amazon marketplace.
          name: marketplace
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: brand_id
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    date:
                      type: string
                      minLength: 8
                      maxLength: 8
                      description: Date in the format YYYYMMDD
                    amount:
                      type: number
                    currency:
                      type: string
                      enum:
                        - AED
                        - AUD
                        - BRL
                        - CAD
                        - EUR
                        - INR
                        - JPY
                        - MXN
                        - SAR
                        - SEK
                        - TRY
                        - GBP
                        - USD
                  required:
                    - date
                    - amount
                    - currency
        '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

````