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

# Record price

> Records a new price point



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/bean/prices
openapi: 3.0.0
info:
  title: FIREla API
  description: |-
    Open source, self-hosted financial data management with Beancount.

    ## Authentication

    All API endpoints require JWT Bearer Token:

    ```
    Authorization: Bearer <your-jwt-token>
    ```

    ## Base URL

    ```
    https://api.firela.io
    ```
  version: 1.0.0
  contact:
    name: FIREla Team
    url: https://firela.io
servers:
  - url: https://api.firela.io
    description: Production server
security:
  - bearer: []
tags:
  - name: Auth
    description: Authentication endpoints
  - name: Accounts
    description: Account management
  - name: Transactions
    description: Transaction management
  - name: Balances
    description: Balance queries
  - name: Commodities
    description: Currency and asset management
  - name: Prices
    description: Price tracking
  - name: Payees
    description: Payee management
  - name: Import
    description: File import
  - name: NLP
    description: Natural language processing
  - name: Health
    description: System health
paths:
  /api/v1/bean/prices:
    post:
      tags:
        - Prices
      summary: Record price
      description: Records a new price point
      responses:
        '201':
          description: Price recorded
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````