> ## 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 Destinations

> Lists the virtual accounts (or wallet addresses) generated for your collections. Requires a Business account.



## OpenAPI

````yaml /api-reference/openapi.json get /collections/destinations/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/destinations/me:
    get:
      tags:
        - Collections
      summary: Get Collection Destinations
      description: >-
        Lists the virtual accounts (or wallet addresses) generated for your
        collections. Requires a Business account.
      parameters:
        - name: status
          in: query
          required: false
          deprecated: false
          schema: {}
          example: USED
          description: Filter by ACTIVE, USED, or EXPIRED
        - 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: 3c1a1e2d-6b3a-4f0a-9c2e-1a2b3c4d5e6f
                    createdAt: '2026-08-17T10:17:00.000Z'
                    updatedAt: '2026-08-17T10:19:32.000Z'
                    active: true
                    businessId: 51ec42a0-6c2f-4435-86ed-fa7bae079a57
                    customerId: 9b1d6a3d-df3e-4e33-9f2b-1c2e3a9b6a11
                    type: FIAT
                    currency: NGNX
                    accountNumber: '9012345678'
                    reference: 9f639b9f-2a4a-4b0e-8e0e-2d9c9d7a9d3e
                    bankName: Wema Bank
                    accountName: Obiex-Ada Okafor
                    status: USED
                    expiresAt: '2026-08-17T10:47:00.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

````