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

# List Trade Accounts

> Retrieves detailed trade provider account information with flexible layouts.

<Note>
  Use the [**<u>Login</u>**<u> endpoint</u>](/api-reference/user/logs-a-user-in) to retrieve the **`SessionKey`**, then include it in the **Authorization** field for authentication.
</Note>


## OpenAPI

````yaml get /v1/Trade/TradeProviders/Accounts
openapi: 3.0.0
info:
  version: v2
  title: Credit Risk Monitor API
servers:
  - url: https://api.creditriskmonitor.com
security: []
paths:
  /v1/Trade/TradeProviders/Accounts:
    get:
      tags:
        - TradeProvider
      summary: Returns Trade Provider accounts.
      operationId: TradeProvider_GetTradeAccounts
      parameters:
        - name: Layout
          in: query
          description: >-
            The subset of data to return. Layout=all returns all fields.
            Layout=scores returns only scores.
          required: false
          schema:
            type: string
        - name: FromDate
          in: query
          description: >-
            Results will only include Businesses that have had changes since
            this date. Leave NULL to return all Businesses.
          required: false
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIDynamicCollection_
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIDynamicCollection_
            text/html:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIDynamicCollection_
            application/xml:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIDynamicCollection_
            text/xml:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIDynamicCollection_
      security:
        - Bearer: []
components:
  schemas:
    APIResponseContainer_APIDynamicCollection_:
      description: ''
      type: object
      properties:
        Success:
          description: ''
          type: boolean
        Data:
          description: ''
          type: array
          items:
            type: object
            additionalProperties:
              type: object
        ErrorCode:
          description: ''
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Enter the Session Key with the `Bearer ` prefix, e.g. "Bearer
        abcde12345".

````