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

# List connection statuses

> Returns statuses for broker connection accounts visible to the caller. The caller must have intent read authorization. User and API-key callers list accounts in their principal organization; service-account callers may list accounts visible to the service credentials.



## OpenAPI

````yaml /api-reference/connections.openapi.json get /v1/connections/status
openapi: 3.1.0
info:
  title: connection
  description: ''
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.anthid.com
    description: Production
security: []
tags:
  - name: Connections
    description: Connection Manager API
paths:
  /v1/connections/status:
    get:
      tags:
        - Connections
      summary: List connection statuses
      description: >-
        Returns statuses for broker connection accounts visible to the caller.
        The caller must have intent read authorization. User and API-key callers
        list accounts in their principal organization; service-account callers
        may list accounts visible to the service credentials.
      operationId: listConnectionStatuses
      responses:
        '200':
          description: Statuses retrieved for the organization's connection accounts
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ListTradingAccountConnectionStatusResponse
              example:
                data:
                  - last_edit_at: '2026-06-03T11:55:00Z'
                    last_update_at: '2026-06-03T12:00:00Z'
                    status: Ok
                    trading_account_id: 550e8400-e29b-41d4-a716-446655440000
                  - last_edit_at: '2026-06-03T11:56:00Z'
                    last_update_at: '2026-06-03T12:01:00Z'
                    status: Pending
                    trading_account_id: 550e8400-e29b-41d4-a716-446655440001
        '401':
          description: Missing or invalid authentication credentials
          content:
            text/plain:
              schema:
                type: string
        '403':
          description: Caller lacks intent read permission
          content:
            text/plain:
              schema:
                type: string
        '429':
          description: Caller exceeded the request rate limit
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: >-
            Unexpected server error while listing trading accounts or reading
            active/pending connection statuses
          content:
            text/plain:
              schema:
                type: string
      security:
        - bearerAuth: []
        - clientCredentials: []
        - apiKeyAuth: []
components:
  schemas:
    ListTradingAccountConnectionStatusResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TradingAccountStatus'
    TradingAccountStatus:
      type: object
      required:
        - trading_account_id
        - status
        - last_edit_at
        - last_update_at
      properties:
        last_edit_at:
          type: string
          format: date-time
        last_update_at:
          type: string
          format: date-time
        status:
          $ref: '#/components/schemas/ClientStatus'
        trading_account_id:
          type: string
          format: uuid
    ClientStatus:
      oneOf:
        - type: string
          enum:
            - Pending
        - type: string
          enum:
            - Ok
        - type: object
          required:
            - Error
          properties:
            Error:
              type: string
        - type: string
          enum:
            - Unknown
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    clientCredentials:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Machine bearer token minted via the client_credentials grant.
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````