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

# Compute the price for a product configuration (no order created)



## OpenAPI

````yaml /openapi.json post /v1/store/quote
openapi: 3.0.0
info:
  title: OneSubnet Core API
  description: >-
    OneSubnet hosting panel API. Toutes les routes sont préfixées par /v1/
    (versioning URI). Les routes Panel sont appelées par le daemon Wings, pas
    par les clients. Les routes Admin nécessitent le rôle admin.
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: Auth & Users
    description: Authentification, profil, gestion utilisateurs
  - name: Store
    description: 'Boutique: catégories, produits, panier'
  - name: Billing
    description: Facturation, checkout Stripe, webhooks
  - name: Services
    description: Services hébergés (enregistrements facturation)
  - name: Affiliation
    description: Parrainage et commissions
  - name: Notifications
    description: Notifications
  - name: Admin - RBAC
    description: Gestion des rôles, permissions, groupes
  - name: Admin - Store & Invoices
    description: CRUD produits, plans, coupons, factures
  - name: Admin - Settings & Tenants
    description: Configuration, multi-tenant, whitelabel
  - name: Admin - Audit
    description: Journal d'audit des requêtes
  - name: System
    description: Health, meta-info
paths:
  /v1/store/quote:
    post:
      tags:
        - Store
      summary: Compute the price for a product configuration (no order created)
      operationId: StoreController_quote_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuoteDto'
      responses:
        '201':
          description: ''
components:
  schemas:
    QuoteDto:
      type: object
      properties:
        productSku:
          type: string
          example: mc-java-17
          description: SKU of the product to quote.
        planId:
          type: string
          description: >-
            ID of the billing Plan to quote. If omitted, the first (cheapest)
            active plan is used.
        configSelections:
          type: object
          description: >-
            Selected config options, keyed by configOptionId → chosen value
            (matching a choice `value` in the option's `choices` JSON array).
          example:
            ram: '4096'
            disk: '50'
      required:
        - productSku

````

## Related topics

- [Add item to cart](/api-reference/store/add-item-to-cart.md)
- [Create a checkout session for an offer](/api-reference/billing/create-a-checkout-session-for-an-offer.md)
- [List my orders](/api-reference/billing/list-my-orders.md)
- [Read the oxanaut-bot configuration](/api-reference/admin--integrations/read-the-oxanaut-bot-configuration.md)
- [Replace the oxanaut-bot configuration](/api-reference/admin--integrations/replace-the-oxanaut-bot-configuration.md)
