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

# List Subaccounts

> Enumerate all trading subaccounts accessible to the user.

Returns list of accounts with identifiers and metadata.



## OpenAPI

````yaml /openapi.json get /v1/subaccounts
openapi: 3.1.0
info:
  title: Centos Finance API
  contact:
    name: Centos Finance
    url: https://centosfi.com/
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.centosfi.com
security: []
tags:
  - name: markets
    description: Search and discover prediction markets across Kalshi and Polymarket.
  - name: subaccounts
    description: >-
      Manage trading subaccounts. Each subaccount can have its own exchange
      credentials and positions.
  - name: positions
    description: View current portfolio positions across all connected exchanges.
  - name: fills
    description: Retrieve trade execution history and fill details.
  - name: prices
    description: Get historical price data and candlesticks from exchanges.
  - name: orders
    description: Place and manage orders on prediction market exchanges.
  - name: complex-orders
    description: >-
      Manage complex orders: conditional orders (take-profit and stop-loss),
      TWAP, and other advanced order types.
paths:
  /v1/subaccounts:
    get:
      tags:
        - subaccounts
      summary: List Subaccounts
      description: |-
        Enumerate all trading subaccounts accessible to the user.

        Returns list of accounts with identifiers and metadata.
      operationId: list_subaccounts_v1_subaccounts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/SubaccountResponse'
                type: array
                title: Response List Subaccounts V1 Subaccounts Get
components:
  schemas:
    SubaccountResponse:
      properties:
        subaccount_id:
          type: string
          format: uuid
          title: Subaccount Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        is_active:
          type: boolean
          title: Is Active
        inserted_at:
          type: string
          format: date-time
          title: Inserted At
      type: object
      required:
        - subaccount_id
        - name
        - is_active
        - inserted_at
      title: SubaccountResponse
      description: Schema for subaccount response.

````