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

# List account orders



## OpenAPI

````yaml /openapi/2026-07-02.yaml get /_api/accounts/{accountId}/orders
openapi: 3.0.3
info:
  title: Simply Tokenized API
  description: >-
    Simply Tokenized API for integrators and partners.


    **Current version `2026-07-02` is in beta** and is only available on the
    **development** environment (`https://dev.go.simplytokenized.com/_api`).
    Request and response shapes may change before a stable release. Beta
    responses include `ST-Api-Version-Beta: true`.


    | Environment | Base URL |

    |-------------|----------|

    | Development | `https://dev.go.simplytokenized.com/_api` |

    | Staging | `https://stage.go.floris3.com/_api` |

    | Live | `https://go.floris3.com/_api` |


    Authenticate with client credentials at `POST /_api/auth`, then call
    resource endpoints with `Authorization: Bearer {access_token}`.


    All successful responses include the `ST-Api-Version` header. The access
    token is valid for 10 minutes.


    **Token amounts:** Fields named `units` and `balance` are integer strings in
    the smallest token unit. Read `decimals` from the offering and multiply the
    human amount by `10^decimals` (e.g. 10 tokens with 8 decimals →
    `"10000000000"`). See the Units and decimals guide in the docs.
  version: '2026-07-02'
servers:
  - url: https://dev.go.simplytokenized.com
    description: Development — beta API version `2026-07-02` available
  - url: https://stage.go.floris3.com
    description: Staging
  - url: https://go.floris3.com
    description: Live (production)
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Obtain a bearer access token.
  - name: Offerings
    description: List and retrieve offerings.
  - name: Orders
    description: >-
      Create, list, retrieve, and cancel orders. Send `units` in the smallest
      token unit — see Units and decimals in the Guides tab.
  - name: Accounts
    description: Create and manage investor accounts.
  - name: Wallets
    description: List wallets and wallet balances.
  - name: Transactions
    description: Account transaction history.
  - name: Benefiting Persons
    description: Beneficial ownership records.
paths:
  /_api/accounts/{accountId}/orders:
    get:
      tags:
        - Orders
      summary: List account orders
      operationId: listAccountOrders
      parameters:
        - name: accountId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: accountId identifier
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                  next:
                    nullable: true
                    type: string
                  previous:
                    nullable: true
                    type: string
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        offering:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            name:
                              nullable: true
                              type: string
                            symbol:
                              nullable: true
                              type: string
                            blockchain:
                              nullable: true
                              type: string
                            tokenization_platform:
                              nullable: true
                              type: string
                            decimals:
                              nullable: true
                              type: number
                            type:
                              nullable: true
                              type: string
                            price_per_token:
                              nullable: true
                              anyOf:
                                - type: string
                                - type: number
                          required:
                            - id
                            - name
                            - symbol
                            - blockchain
                            - tokenization_platform
                            - decimals
                            - type
                            - price_per_token
                          additionalProperties: false
                        units:
                          type: string
                        total_amount:
                          type: number
                        payment_provider:
                          nullable: true
                          type: string
                          enum:
                            - bank_transfer
                            - stripe
                            - checkout
                            - tokensale
                        paid_at:
                          nullable: true
                          type: string
                        paid_amount:
                          type: number
                        currency:
                          nullable: true
                          type: string
                        status:
                          type: string
                        account:
                          type: object
                          properties:
                            id:
                              nullable: true
                              type: string
                              format: uuid
                            full_name:
                              type: string
                            email:
                              type: string
                            type:
                              type: string
                          required:
                            - id
                            - full_name
                            - email
                            - type
                          additionalProperties: false
                      required:
                        - id
                        - offering
                        - units
                        - total_amount
                        - payment_provider
                        - paid_at
                        - paid_amount
                        - currency
                        - status
                        - account
                      additionalProperties: false
                required:
                  - count
                  - next
                  - previous
                  - results
                additionalProperties: false
        '400':
          description: Bad Request – validation failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '401':
          description: Unauthorized – invalid or missing access token
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '403':
          description: Forbidden – insufficient scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '429':
          description: Too Many Requests – rate limit exceeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer access token from POST /_api/auth

````