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

# Create Subaccount

> Create a new user subaccount.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/ramp/subaccount
openapi: 3.0.0
info:
  title: Bullring Finance API
  description: >-
    The Bullring Finance API allows you to build powerful cross-border payment
    solutions.
  version: 1.0.0
servers:
  - url: https://api.bullring.finance
    description: Production Server
  - url: https://staging-api.bullring.finance
    description: Sandbox Server
security:
  - x-api-key: []
tags:
  - name: Subaccounts
    description: Operations related to user subaccounts.
  - name: Verification
    description: Endpoints for subaccount verification, including KYC and KYB processes.
  - name: Balances
    description: Endpoints for retrieving account balances.
  - name: Deposits
    description: Endpoints for handling deposits into subaccounts.
  - name: Recipients
    description: Manage payment recipients for withdrawals.
  - name: Withdrawals
    description: Endpoints for handling withdrawals from subaccounts.
  - name: Conversions
    description: Endpoints for currency conversions.
  - name: Rates
    description: Endpoints for currency conversion rates.
  - name: Fees
    description: Endpoints for checking transaction fees.
  - name: Offramp
    description: Endpoints for handling offramp operations.
  - name: Onramp
    description: Endpoints for handling onramp operations.
paths:
  /v1/ramp/subaccount:
    post:
      tags:
        - Subaccounts
      summary: Create Subaccount
      description: Create a new user subaccount.
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
              required:
                - email
            example:
              email: user1+0012357490i@bullring.finance
      responses:
        '201':
          description: Subaccount created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    example: 6a0fd7af-181d-4c0f-b24b-b8cfb739dabc
                  email:
                    type: string
                    format: email
                    example: user1+0013@bullring.finance
                required:
                  - id
                  - email
              example:
                id: 6a0fd7af-181d-4c0f-b24b-b8cfb739dabc
                email: user1+0012357490i@bullring.finance
                status: created
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````