> ## Documentation Index
> Fetch the complete documentation index at: https://developers.criteo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /2025-10/retail-media/balances/{balanceId}/history

> Gets the balance's historical change data.



## OpenAPI

````yaml https://api.criteo.com/2025-10/retailmedia/open-api-specifications.json get /2025-10/retail-media/balances/{balanceId}/history
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2025-10
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2025-10/retail-media/balances/{balanceId}/history:
    get:
      tags:
        - Balance
      summary: /2025-10/retail-media/balances/{balanceId}/history
      description: Gets the balance's historical change data.
      operationId: GetBalanceHistory
      parameters:
        - name: balanceId
          in: path
          description: Balance id.
          required: true
          schema:
            type: string
        - name: limit
          in: query
          description: The number of elements to be returned.
          schema:
            maximum: 100
            minimum: 1
            type: integer
            format: int32
            default: 25
        - name: limitToChangeTypes
          in: query
          description: Comma separated change types string that will be queried.
          schema:
            type: string
        - name: offset
          in: query
          description: The (zero-based) starting offset in the collection.
          schema:
            maximum: 2147483647
            minimum: 0
            type: integer
            format: int32
            default: 0
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageOfBalanceHistoryChangeDataCaptureV1'
      security:
        - oauth:
            - RetailMedia_Balance_Read
components:
  schemas:
    PageOfBalanceHistoryChangeDataCaptureV1:
      required:
        - data
        - meta
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/BalanceHistoryChangeDataCaptureV1'
        meta:
          $ref: '#/components/schemas/Metadata'
      additionalProperties: false
      description: >-
        A wrapper class to return a single page of items with metadata for
        offset and limit based paging.
    BalanceHistoryChangeDataCaptureV1:
      required:
        - changeDetails
        - changeType
        - dateOfModification
        - modifiedByUser
      type: object
      properties:
        changeDetails:
          $ref: '#/components/schemas/ChangeDetailsV1'
        changeType:
          enum:
            - BalanceCreated
            - BalanceAdded
            - BalanceRemoved
            - BalanceUncapped
            - BalanceCapped
            - EndDate
            - StartDate
            - BalanceName
            - PoNumber
            - ValueAdd
            - Unknown
          type: string
          description: Represent the type of change states of the history.
        dateOfModification:
          type: string
          description: Date when data change has occured.
          format: date-time
        memo:
          type: string
          description: Memo associate with the insertion order modification.
          nullable: true
        modifiedByUser:
          type: string
          description: Username who modified the insertion order.
      additionalProperties: false
      description: Data model represents the data change capture of balance history.
    Metadata:
      required:
        - limit
        - offset
      type: object
      properties:
        count:
          type: integer
          format: int64
          nullable: true
        limit:
          type: integer
          description: The number of elements to be returned.
          format: int32
        offset:
          type: integer
          description: The (zero-based) starting offset in the collection.
          format: int32
      additionalProperties: false
      description: Metadata related to the current request.
      nullable: true
    ChangeDetailsV1:
      type: object
      properties:
        changeValue:
          type: string
          description: Change detail of a property of the insertion order.
          nullable: true
        currentValue:
          type: string
          description: Current value of a property of the insertion order.
          nullable: true
        previousValue:
          type: string
          description: Previous value of a property of the insertion order.
          nullable: true
      additionalProperties: false
      description: Change details of a property of the balance.
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````