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

# Quote a time-boxed prepaid InferCrane Cloud deployment



## OpenAPI

````yaml /openapi.json post /api/v1/managed-deployment-quotes
openapi: 3.1.0
info:
  description: >-
    Durable, authenticated control-plane operations. Mutation responses may
    outlive the requesting client.
  title: InferCrane Control API
  version: 1.0.0
servers:
  - description: Local InferCrane API and gateway
    url: http://127.0.0.1:18000
security: []
tags:
  - name: Admission
  - name: Adoption
  - name: Alerts
  - name: Async inference
  - name: Audit
  - name: Autopilot
  - name: Benchmarks
  - name: Billing
  - name: Billing administration
  - name: Burst Guard
  - name: Capacity intelligence
  - name: Compute
  - name: Context Passport
  - name: Deployments
  - name: Diagnostics
  - name: Endpoints
  - name: External capacity
  - name: FinOps
  - name: Identity
  - name: Inference
  - name: Inference Lab
  - name: Inference decisions
  - name: Inference optimization
  - name: Infrastructure
  - name: Model API administration
  - name: Model APIs
  - name: Model artifacts
  - name: Model catalog
  - name: Monitoring
  - name: Operations
  - name: Planning
  - name: Providers
  - name: Recipes
  - name: Release Guard
  - name: Release evidence
  - name: Replay
  - name: Revisions
  - name: Routing
  - name: Sandboxes
  - name: Scaling
  - name: Secrets
  - name: System
  - name: Targets
  - name: Training lineage
paths:
  /api/v1/managed-deployment-quotes:
    post:
      tags:
        - Compute
      summary: Quote a time-boxed prepaid InferCrane Cloud deployment
      operationId: quoteManagedDeployment
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ManagedDeploymentQuoteRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManagedDeploymentQuoteEnvelope'
          description: Success
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Typed API error
      security:
        - bearerAuth: []
components:
  schemas:
    ManagedDeploymentQuoteRequest:
      additionalProperties: false
      properties:
        compute_mode:
          const: elastic
          type: string
        gpu:
          maxLength: 128
          minLength: 1
          type: string
        gpu_count:
          const: 1
          type: integer
        provider:
          maxLength: 64
          minLength: 1
          type: string
        region:
          maxLength: 128
          type: string
        runtime_seconds:
          maximum: 86400
          minimum: 900
          multipleOf: 60
          type: integer
      required:
        - provider
        - gpu
        - gpu_count
        - compute_mode
        - runtime_seconds
      type: object
    ManagedDeploymentQuoteEnvelope:
      additionalProperties: false
      properties:
        affordable:
          type: boolean
        disclosure:
          type: string
        funding_mode:
          const: prepaid
          type: string
        quote:
          $ref: '#/components/schemas/ManagedDeploymentQuote'
        reservation_is_charge:
          const: false
          type: boolean
        shortfall_microusd:
          minimum: 0
          type: integer
        wallet:
          $ref: '#/components/schemas/ManagedWallet'
      required:
        - quote
        - wallet
        - affordable
        - shortfall_microusd
        - funding_mode
        - reservation_is_charge
        - disclosure
      type: object
    ErrorEnvelope:
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
        - error
      type: object
    ManagedDeploymentQuote:
      additionalProperties: false
      properties:
        cleanup_allowance_seconds:
          minimum: 60
          type: integer
        currency:
          const: USD
          type: string
        gpu:
          type: string
        gpu_count:
          const: 1
          type: integer
        observed_at:
          format: date-time
          type: string
        provider:
          type: string
        region:
          type: string
        reserved_microusd:
          minimum: 1
          type: integer
        retail_hourly_microusd:
          minimum: 1
          type: integer
        runtime_limit_seconds:
          maximum: 86400
          minimum: 900
          type: integer
        state:
          const: current
          type: string
        valid_until:
          format: date-time
          type: string
      required:
        - state
        - provider
        - gpu
        - gpu_count
        - currency
        - retail_hourly_microusd
        - reserved_microusd
        - runtime_limit_seconds
        - cleanup_allowance_seconds
        - observed_at
        - valid_until
      type: object
    ManagedWallet:
      additionalProperties: false
      properties:
        available_microusd:
          type: integer
        balance_microusd:
          type: integer
        currency:
          const: USD
          type: string
        debt_microusd:
          minimum: 0
          type: integer
        reserved_microusd:
          minimum: 0
          type: integer
        tenant_id:
          type: string
        updated_at:
          format: date-time
          type: string
      required:
        - tenant_id
        - currency
        - balance_microusd
        - reserved_microusd
        - debt_microusd
        - available_microusd
        - updated_at
      type: object
    Error:
      properties:
        category:
          type: string
        code:
          type: string
        message:
          type: string
        remediation:
          type: string
        request_id:
          type: string
        retryable:
          type: boolean
      required:
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````