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

# Create account



## OpenAPI

````yaml /openapi.json post /accounts
openapi: 3.1.0
info:
  title: Finup Public API
  version: 1.0.0
  description: >-
    Client-facing Finup API reference generated from current public endpoint
    metadata.
servers:
  - url: https://api.finup.io/backend
    description: Production
security: []
tags:
  - name: Accounts
    description: Current account, account setup, and account capabilities.
  - name: Transactions
    description: Account transaction lists and aggregates.
  - name: Cards
    description: Card issuing, listing, funding, and status changes.
paths:
  /accounts:
    post:
      tags:
        - Accounts
      summary: Create account
      responses:
        '201':
          description: Success
          content:
            application/json:
              schema:
                type: object
                required:
                  - result
                properties:
                  result:
                    $ref: '#/components/schemas/AccountCreated'
        '401':
          description: Missing or invalid credentials
        '403':
          description: Insufficient permission for this operation
        '404':
          description: Resource not found
      security:
        - apiKeyAuth: []
components:
  schemas:
    AccountCreated:
      type: object
      properties:
        id:
          type: string
          example: 67fc3d0a766d7a2c1fafefb8
        status:
          type: string
          example: Enabled
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````