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

# List Transactions on Card



## OpenAPI

````yaml get /transactions
openapi: 3.1.0
info:
  title: ALAL APIs
  version: 1.0.0
servers:
  - url: https://api.sandbox.saalal.com/v1
security: []
tags:
  - name: Cards
  - name: Transactions
  - name: CardUsers
  - name: Disputes
paths:
  /transactions:
    get:
      tags:
        - Transactions
      summary: List Transactions on Card
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: card_reference
          in: query
          schema:
            type: string
          example: 6516484d-0059-4f53-b2cf-31f3ae884d3a
        - name: page
          in: query
          schema:
            type: integer
          example: '1'
        - name: per_page
          in: query
          schema:
            type: integer
          example: '20'
      responses:
        '200':
          description: OK
          headers:
            Host:
              schema:
                type: string
                example: localhost:8090
            Date:
              schema:
                type: string
                example: Wed, 26 Jul 2023 18:49:30 GMT
            Connection:
              schema:
                type: string
                example: close
            X-Powered-By:
              schema:
                type: string
                example: PHP/8.2.4
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Content-Type:
              schema:
                type: string
                example: application/json
            X-RateLimit-Limit:
              schema:
                type: integer
                example: '60'
            X-RateLimit-Remaining:
              schema:
                type: integer
                example: '59'
            Access-Control-Allow-Origin:
              schema:
                type: string
                example: '*'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: OK
                  statusCode:
                    type: integer
                    example: 200
                  data:
                    type: array
                    items:
                      type: object
                      xml:
                        name: item
                      properties:
                        reference:
                          type: string
                          example: 792c6cf2-f5cf-46c8-bf8c-699a9028010e
                        card_reference:
                          type: string
                          example: 9c54515e-7890-44f9-8cc2-a85b80322b98
                        amount:
                          type: integer
                          example: 1000
                        status:
                          type: string
                          example: success
                        kind:
                          type: string
                          example: recharge
                        merchant:
                          type: string
                          example: Any
                        created_at:
                          type: string
                          example: '2023-06-22T11:07:07.000000Z'
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                        example: 1
                      from:
                        type: integer
                        example: 1
                      last_page:
                        type: integer
                        example: 1
                      per_page:
                        type: integer
                        example: 20
                      to:
                        type: integer
                        example: 17
                      total:
                        type: integer
                        example: 17
              example:
                message: OK
                statusCode: 200
                data:
                  transaction:
                    - slug: e1d30877-0353-45b3-82fb-92780238ecb4
                      card_reference: 9c54515e-7890-44f9-8cc2-a85b80322b98
                      reference: b60f55b1-922a-406a-8417-g54atb0849ttb22c
                      status: success
                      kind: recharge
                      merchant: false
                      amount: 2000
                      created_at: '2023-06-22T10:40:17.000000Z'
                    - slug: 119d2a37-22e8-4122-9d18-267909aef996
                      card_reference: 9c54515e-7890-44f9-8cc2-a85b80322b98
                      reference: b60f55b1-922a-406a-8417-g5g4atb0849ttb22c
                      status: success
                      kind: recharge
                      merchant: false
                      amount: 2000
                      created_at: '2023-06-22T11:07:07.000000Z'
                    - slug: 1e4aa0d1-1979-47a0-83e6-ecb1c19f0a18
                      card_reference: 9c54515e-7890-44f9-8cc2-a85b80322b98
                      reference: b60f55b1-922a-406a-8417-g5hhg4atb0849ttb22c
                      status: success
                      kind: recharge
                      merchant: false
                      amount: 1000
                      created_at: '2023-06-22T11:18:01.000000Z'
                    - slug: 9e3c8b93-d024-4973-bd50-64310879502a
                      card_reference: 9c54515e-7890-44f9-8cc2-a85b80322b98
                      reference: b60f55b1-922a-406a-8417-g5hhg4a88jtb0849ttb22c
                      status: success
                      kind: withdraw
                      merchant: false
                      amount: 1000
                      created_at: '2023-06-22T11:25:37.000000Z'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````