> ## 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.

# Create account



## OpenAPI

````yaml /openapi/2026-07-02.yaml post /_api/accounts
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:
    post:
      tags:
        - Accounts
      summary: Create account
      operationId: createAccount
      parameters: []
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  type:
                    type: string
                    enum:
                      - INDIVIDUAL
                      - COMPANY
                  communication:
                    type: object
                    properties:
                      email:
                        type: string
                        maxLength: 254
                        format: email
                      email_confirmed:
                        type: boolean
                    required:
                      - email
                      - email_confirmed
                    additionalProperties: false
                  bank_account:
                    type: object
                    properties:
                      account_holder:
                        type: string
                        minLength: 1
                        maxLength: 100
                      bank:
                        type: string
                        minLength: 1
                        maxLength: 100
                      bic:
                        type: string
                        minLength: 8
                        maxLength: 11
                      country:
                        type: string
                        minLength: 2
                        maxLength: 2
                      currency:
                        type: string
                        minLength: 3
                        maxLength: 3
                      iban:
                        type: string
                        minLength: 15
                        maxLength: 34
                    required:
                      - account_holder
                      - bank
                      - bic
                      - country
                      - currency
                      - iban
                    additionalProperties: false
                  is_beneficiary:
                    type: boolean
                  tax_information:
                    type: object
                    properties:
                      non_assessment_certificate:
                        type: boolean
                      tax_identification_number:
                        type: string
                        minLength: 1
                        maxLength: 50
                      is_subject_to_german_tax:
                        type: boolean
                    required:
                      - non_assessment_certificate
                      - tax_identification_number
                      - is_subject_to_german_tax
                    additionalProperties: false
                  individual:
                    type: object
                    properties:
                      firstName:
                        type: string
                        minLength: 1
                        maxLength: 100
                      lastName:
                        type: string
                        minLength: 1
                        maxLength: 100
                      birth_date:
                        type: string
                      birth_place:
                        type: string
                        minLength: 1
                        maxLength: 100
                      citizenship:
                        type: string
                        minLength: 2
                        maxLength: 2
                      gender:
                        default: ''
                        type: string
                        enum:
                          - ''
                          - F
                          - M
                          - D
                      street:
                        type: string
                        minLength: 1
                        maxLength: 200
                      city:
                        type: string
                        minLength: 1
                        maxLength: 100
                      zip:
                        type: string
                        minLength: 1
                        maxLength: 20
                      state:
                        type: string
                        minLength: 1
                        maxLength: 100
                      country:
                        type: string
                        minLength: 2
                        maxLength: 2
                      phone:
                        type: string
                        minLength: 5
                        maxLength: 20
                    required:
                      - firstName
                      - lastName
                      - birth_date
                      - birth_place
                      - citizenship
                      - gender
                      - street
                      - city
                      - zip
                      - state
                      - country
                      - phone
                    additionalProperties: false
                  company:
                    type: object
                    properties:
                      name:
                        type: string
                        minLength: 1
                        maxLength: 200
                      registration_number:
                        type: string
                        minLength: 1
                        maxLength: 50
                      legal_form:
                        type: string
                        minLength: 1
                        maxLength: 50
                      vat_id:
                        type: string
                        minLength: 1
                        maxLength: 50
                      incorporation_date:
                        type: string
                      street:
                        type: string
                        minLength: 1
                        maxLength: 200
                      city:
                        type: string
                        minLength: 1
                        maxLength: 100
                      zip:
                        type: string
                        minLength: 1
                        maxLength: 20
                      state:
                        type: string
                        minLength: 1
                        maxLength: 100
                      country:
                        type: string
                        minLength: 2
                        maxLength: 2
                      phone:
                        type: string
                        minLength: 5
                        maxLength: 20
                    required:
                      - name
                      - registration_number
                      - legal_form
                      - vat_id
                      - incorporation_date
                      - street
                      - city
                      - zip
                      - state
                      - country
                      - phone
                    additionalProperties: false
                  kyc:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - NEW
                          - DEACTIVATED
                          - PENDING
                          - APPROVED
                          - REJECTED
                    required:
                      - status
                    additionalProperties: false
                  kyb:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - NEW
                          - DEACTIVATED
                          - PENDING
                          - APPROVED
                          - REJECTED
                    required:
                      - status
                    additionalProperties: false
                required:
                  - id
                  - type
                  - communication
                  - bank_account
                  - is_beneficiary
                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

````