> ## 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.

# Compare a current catalog quote with read-only provider launch evidence



## OpenAPI

````yaml /openapi.json post /api/v1/capacity/probes
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 APIs
  - name: Model artifacts
  - name: Model catalog
  - name: Monitoring
  - name: Operations
  - 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/capacity/probes:
    post:
      tags:
        - Capacity intelligence
      summary: Compare a current catalog quote with read-only provider launch evidence
      operationId: probeLaunchCapacity
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LaunchProbeRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LaunchProbeEnvelope'
          description: Success
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Typed API error
      security:
        - bearerAuth: []
components:
  schemas:
    LaunchProbeRequest:
      additionalProperties: false
      properties:
        gpu:
          maxLength: 128
          minLength: 1
          type: string
        gpu_count:
          default: 1
          maximum: 1024
          minimum: 1
          type: integer
        provider:
          maxLength: 64
          minLength: 1
          type: string
        region:
          maxLength: 128
          type: string
      required:
        - provider
        - gpu
      type: object
    LaunchProbeEnvelope:
      additionalProperties: false
      properties:
        catalog_quote:
          $ref: '#/components/schemas/CatalogLaunchQuote'
        launch_evidence:
          $ref: '#/components/schemas/LaunchProbeEvidence'
        request:
          $ref: '#/components/schemas/LaunchProbeRequest'
        selection_boundary:
          type: string
      required:
        - request
        - catalog_quote
        - launch_evidence
        - selection_boundary
      type: object
    ErrorEnvelope:
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
        - error
      type: object
    CatalogLaunchQuote:
      additionalProperties: false
      properties:
        currency:
          type: string
        gpu:
          type: string
        gpu_count:
          type: integer
        hourly_usd:
          type:
            - number
            - 'null'
        limitations:
          items:
            type: string
          type: array
        observed_at:
          format: date-time
          type: string
        provider:
          type: string
        region:
          type: string
        source:
          type: string
        state:
          enum:
            - current
            - unavailable
          type: string
        valid_until:
          format: date-time
          type: string
      required:
        - state
        - provider
        - gpu
        - gpu_count
        - hourly_usd
        - limitations
      type: object
    LaunchProbeEvidence:
      additionalProperties: false
      properties:
        availability_state:
          enum:
            - available
            - constrained
            - unavailable
            - unknown
          type: string
        connection_state:
          enum:
            - configured
            - connection-required
          type: string
        deployability:
          enum:
            - available
            - constrained
            - unavailable
            - unknown
          type: string
        expires_at:
          format: date-time
          type: string
        gpu:
          type: string
        gpu_count:
          type: integer
        limitations:
          items:
            type: string
          type: array
        message:
          type: string
        observed_at:
          format: date-time
          type: string
        provider:
          type: string
        quota_state:
          enum:
            - available
            - constrained
            - unavailable
            - unknown
          type: string
        region:
          type: string
        source:
          type: string
      required:
        - provider
        - gpu
        - gpu_count
        - connection_state
        - availability_state
        - quota_state
        - deployability
        - source
        - observed_at
        - expires_at
        - message
      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

````