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

# Create account

> Create a Yomira account and return an API key.



## OpenAPI

````yaml /openapi.json post /api/auth/register
openapi: 3.1.0
info:
  title: Yomira API
  version: 0.1.0
  description: >-
    Create context-first reaction simulations and retrieve JSON or Markdown
    exports.
servers:
  - url: https://tryyomira.com
security: []
paths:
  /api/auth/register:
    post:
      summary: Create account
      description: Create a Yomira account and return an API key.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - email
                - password
                - name
                - companyName
                - companyUrl
                - role
                - intendedUse
              properties:
                email:
                  type: string
                  format: email
                password:
                  type: string
                  minLength: 8
                name:
                  type: string
                companyName:
                  type: string
                companyUrl:
                  type: string
                role:
                  type: string
                intendedUse:
                  type: string
      responses:
        '200':
          description: Account created
        '400':
          description: Invalid input
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string

````