> ## 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 offering orders



## OpenAPI

````yaml /openapi/2026-07-02.yaml get /_api/offerings/{offeringId}/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/offerings/{offeringId}/orders:
    get:
      tags:
        - Orders
      summary: List offering orders
      operationId: listOfferingOrders
      parameters:
        - name: offeringId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: offeringId identifier
        - name: limit
          in: query
          required: true
          schema:
            default: 10
            type: integer
            minimum: 10
            maximum: 50
        - name: offset
          in: query
          required: true
          schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
      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
              example:
                count: 3
                next: null
                previous: null
                results:
                  - id: 4d35d9b5-516d-4dbe-bf2c-f80c3fa29fb8
                    offering:
                      id: bf446783-f4b0-491a-b054-94d9dae23ec6
                      name: Testing payout
                      symbol: PAYO
                      blockchain: sepolia_testnet
                      tokenization_platform: native
                      decimals: 8
                      type: EQUITY_TOKENIZED
                      price_per_token: '10'
                    units: '500000000'
                    total_amount: 50
                    payment_provider: null
                    paid_at: '2026-07-10T13:34:12.000Z'
                    paid_amount: 50
                    currency: USD
                    status: MINTED
                    account:
                      id: 67c025a2-d19a-4d61-b7a8-0752c0327c92
                      full_name: Swetha Jayakrishnan
                      email: saranya.s+testing1@geesesquads.com
                      type: INDIVIDUAL
        '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

````