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

# Gets member's active account statements



## OpenAPI

````yaml openapi/website-v1.json GET /web/v1/statements
openapi: 3.0.4
info:
  title: Integration.WebSite.Api
  version: v1
servers:
  - url: https://{host}
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /web/v1/statements:
    get:
      tags:
        - Member
      summary: Gets member's active account statements
      parameters:
        - name: limit
          in: query
          description: Maximum number of statements to return per page
          required: true
          schema:
            type: integer
            format: int32
        - name: cursor
          in: query
          description: >-
            Pagination cursor. Pass the NextCursor value from previous response
            to get next page. Must be >= 2.
          schema:
            maximum: 9223372036854776000
            minimum: 2
            type: integer
            format: int64
        - name: Accept-Language
          in: header
          description: >-
            Language code for localized display names (e.g., "en", "dk").
            Default is "en".
          schema:
            type: string
            default: en
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Integration.Website.ApiClients.GetStatementsResponse
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
components:
  schemas:
    Integration.Website.ApiClients.GetStatementsResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/GetStatementsResponse_Statement'
          description: Collection of benefit statements (offers, rewards, bonuses)
          nullable: true
        nextCursor:
          type: string
          description: >-
            Pagination cursor for next page. Use this value in the next
            request's cursor parameter. Null if this is the last page.
          nullable: true
      additionalProperties: false
      description: Response containing paginated list of member benefit statements
    LoopFoundation.Commons.Contracts.WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
    GetStatementsResponse_Statement:
      type: object
      properties:
        id:
          type: integer
          description: Unique statement identifier
          format: int64
        title:
          type: string
          description: 'Display title describing the benefit (example: "10% off Coca-Cola")'
          nullable: true
        amount:
          type: number
          description: Monetary value of savings or earnings in account currency
          format: double
        type:
          type: string
          description: >-
            Benefit type code (examples: "OfferDiscount", "GameReward",
            "LoyaltyBonus")
          nullable: true
        typeDisplayName:
          type: string
          description: Human-readable benefit type name in requested language
          nullable: true
        state:
          type: string
          description: >-
            Current statement status code (examples: "Completed", "Pending",
            "Cancelled")
          nullable: true
        stateDisplayName:
          type: string
          description: Human-readable status description in requested language
          nullable: true
        createdAt:
          type: string
          description: UTC timestamp when this statement was created
          format: date-time
        fromDisplayName:
          type: string
          description: >-
            Source description of the benefit (example: "Your Savings",
            "Promotional Game")
          nullable: true
        toDisplayName:
          type: string
          description: >-
            Destination description where benefit was used (example: "Purchase
            at Store #1029")
          nullable: true
        receiptId:
          type: string
          description: >-
            Receipt identifier if this statement is linked to a purchase
            transaction
          nullable: true
        detailsDisplayName:
          type: string
          description: >-
            Detailed human-readable explanation of this benefit for display
            purposes
          nullable: true
      additionalProperties: false
      description: Individual benefit statement details
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````