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

# Workspace actual (incluye moneda base de reporte, 09)



## OpenAPI

````yaml /openapi/v1.json get /v1/workspace
openapi: 3.0.0
info:
  title: Finzaria API
  description: >-
    API REST de Finzaria — finanzas personales para México, dev-first y
    agent-first. Autentícate con tu API key bxm_ (o un token OAuth).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.finzaria.com/v1
    description: Producción
security: []
tags: []
paths:
  /v1/workspace:
    get:
      tags:
        - workspace
      summary: Workspace actual (incluye moneda base de reporte, 09)
      operationId: WorkspaceController_get
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceDto'
      security:
        - bearer: []
components:
  schemas:
    WorkspaceDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        baseCurrency:
          type: string
          example: MXN
        plan:
          type: string
          enum:
            - plus
            - pro
            - prime
      required:
        - id
        - name
        - baseCurrency
        - plan
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT (Supabase Auth)
      type: http

````