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

# Get Collection Transactions

> Lists your collection transactions. Requires a Business account.



## OpenAPI

````yaml /api-reference/openapi.json get /collections/transactions/me
openapi: 3.0.0
info:
  title: Obiex API
  version: 1.0.0
  description: >-
    Welcome to the Obiex API Documentation, your guide to building amazing
    payment experiences with our powerful APIs.


    Start by reviewing the overview of each folder to understand how the APIs
    function and interact. This will help you get the most out of our platform
    and easily integrate its features into your applications.
servers:
  - url: https://api.obiex.finance/v1
security: []
paths:
  /collections/transactions/me:
    get:
      tags:
        - Collections
      summary: Get Collection Transactions
      description: Lists your collection transactions. Requires a Business account.
      parameters:
        - name: status
          in: query
          required: false
          deprecated: false
          schema: {}
          example: COMPLETED
          description: Filter by PENDING, HELD, COMPLETED, or FAILED
        - name: type
          in: query
          required: false
          deprecated: false
          schema: {}
          example: FIAT
          description: Filter by FIAT or CRYPTO
        - name: page
          in: query
          required: false
          deprecated: false
          schema: {}
          example: '1'
        - name: pageSize
          in: query
          required: false
          deprecated: false
          schema: {}
          example: '30'
        - name: X-API-KEY
          in: header
          required: false
          deprecated: false
          schema: {}
        - name: X-API-TIMESTAMP
          in: header
          required: false
          deprecated: false
          schema: {}
        - name: X-API-SIGNATURE
          in: header
          required: false
          deprecated: false
          schema: {}
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
              example:
                message: Ok
                data:
                  - id: 5e6f7a8b-9c0d-4e1f-8a2b-3c4d5e6f7a8b
                    createdAt: '2026-08-17T10:17:00.000Z'
                    updatedAt: '2026-08-17T10:19:32.000Z'
                    active: true
                    reference: col_9f639b9f2a4a4b0e8e0e2d9c9d7a9d3e
                    businessId: 51ec42a0-6c2f-4435-86ed-fa7bae079a57
                    customerId: 9b1d6a3d-df3e-4e33-9f2b-1c2e3a9b6a11
                    destinationId: 3c1a1e2d-6b3a-4f0a-9c2e-1a2b3c4d5e6f
                    collectionType: FIAT
                    sourceCurrency: NGNX
                    sourceAmount: 5000
                    targetCurrency: USDT
                    targetAmount: 3.31
                    senderInfo:
                      senderName: Ada Okafor
                      senderAccount: '0123456789'
                      bank: GTBank
                    status: COMPLETED
                    bankReference: FBN|20260817101932|9f639b9f
                    settledAt: '2026-08-17T10:19:32.000Z'
                meta:
                  perPage: 30
                  currentPage: 1
                  totalPages: 1
                  count: 1
                  total: 1
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````