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

# Get Offer Details

> Get detailed information about a specific offer.

Returns detailed information about a specific offer, including the matched price records and machine details.


## OpenAPI

````yaml GET /offers/{offer_id}
openapi: 3.1.0
info:
  title: Supply Service
  description: GPU offers querying and provisioning service
  version: 0.1.0
servers:
  - url: https://supply-api.compute-desk.com
security: []
paths:
  /offers/{offer_id}:
    get:
      tags:
        - Offers
      summary: Get Offer Details
      description: Get detailed information about a specific offer.
      operationId: get_offer_details_offers__offer_id__get
      parameters:
        - name: offer_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Offer Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OfferDetails'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    OfferDetails:
      properties:
        offer_id:
          type: string
          format: uuid
          title: Offer Id
          description: Unique offer identifier
        gpu_type:
          type: string
          title: Gpu Type
          description: Canonical GPU name (e.g. nvidia-h100-sxm5-80gb)
        gpu_family:
          type: string
          title: Gpu Family
          description: GPU family name (e.g. H100, A100)
        gpu_count:
          type: integer
          title: Gpu Count
          description: Number of GPUs in this offer
        vendor:
          type: string
          title: Vendor
          description: Cloud vendor providing this offer
        region:
          type: string
          title: Region
          description: 'Region group: US, EU, APAC, or Other'
        contract_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Contract Type
          description: 'Contract type: ondemand or spot'
        gpu_price_per_hour:
          anyOf:
            - type: number
            - type: 'null'
          title: Gpu Price Per Hour
          description: >-
            Price per GPU per hour in USD (includes boot disk cost). Total
            hourly cost = gpu_price_per_hour * gpu_count
        boot_disk_in_gb:
          anyOf:
            - type: integer
            - type: 'null'
          title: Boot Disk In Gb
          description: >-
            Boot disk size in GB. Null when the vendor does not validate boot
            disk size
        vcpu_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Vcpu Count
          description: Number of vCPUs (null if not reported by vendor)
        memory_in_gb:
          anyOf:
            - type: integer
            - type: 'null'
          title: Memory In Gb
          description: RAM in GB (null if not reported by vendor)
        total_price_per_hour:
          anyOf:
            - type: number
            - type: 'null'
          title: Total Price Per Hour
          description: >-
            Total hourly running cost in USD (compute only). Equal to
            gpu_price_per_hour * gpu_count
        status:
          type: string
          title: Status
          description: 'Offer status: available, procured, failed, or expired'
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When this offer was created
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
          description: When this offer expires (30 minutes from creation)
        procured_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Procured At
          description: When this offer was procured (null if not yet procured)
      type: object
      required:
        - offer_id
        - gpu_type
        - gpu_family
        - gpu_count
        - vendor
        - region
        - status
        - created_at
      title: OfferDetails
      description: Detailed information about an offer, aligned with GetOffersSummary.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````