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

# Search available GPUs

> Search for available GPU offers across all nodes. No authentication required.



## OpenAPI

````yaml /api-reference/openapi.json get /search
openapi: 3.1.0
info:
  title: Nova Cloud API
  description: >-
    REST API for the Nova Cloud GPU rental platform. Manage virtual machines,
    SSH keys, billing, and more.
  version: 1.0.0
  contact:
    name: Nova Cloud Support
    email: support@nova-cloud.ai
    url: https://nova-cloud.ai
servers:
  - url: https://api.nova-cloud.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Authentication
    description: User registration, login, and token management
  - name: API Keys
    description: Create and manage API keys for programmatic access
  - name: SSH Keys
    description: Upload and manage SSH public keys for VM access
  - name: Virtual Machines
    description: Create, manage, and monitor GPU-powered VMs
  - name: Search & Pricing
    description: Browse available GPU offers and current pricing
  - name: Billing
    description: Balance, usage, transactions, and payment management
  - name: Reservations
    description: Reserved instance pricing and management
paths:
  /search:
    get:
      tags:
        - Search & Pricing
      summary: Search available GPUs
      description: >-
        Search for available GPU offers across all nodes. No authentication
        required.
      operationId: search_gpus
      parameters:
        - name: gpu_type
          in: query
          schema:
            type: string
          description: Filter by GPU type (e.g., 5090, 4090, pro6000)
        - name: num_gpus
          in: query
          schema:
            type: integer
          description: Filter by minimum number of GPUs
        - name: max_price
          in: query
          schema:
            type: number
          description: Maximum price per GPU per hour
      responses:
        '200':
          description: List of available GPU offers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OfferResponse'
      security: []
components:
  schemas:
    OfferResponse:
      type: object
      properties:
        node:
          type: string
          description: Node ID
        gpu_type:
          type: string
          description: GPU type (5090, 4090, pro6000)
        gpu_count:
          type: integer
        gpu_ram_mb:
          type: integer
          description: VRAM per GPU in MB
        total_gpu_ram_mb:
          type: integer
        ram_gb:
          type: integer
          description: System RAM in GB
        cpu_cores:
          type: integer
        cpu_model:
          type: string
          nullable: true
        pcie_gen:
          type: string
          nullable: true
        max_storage_gb:
          type: integer
        gpu_price_hourly:
          type: number
          description: On-demand GPU cost per hour
        interruptible_rate:
          type: number
          description: Interruptible price per GPU hour
        storage_price_hourly:
          type: number
        total_price_hourly:
          type: number
          description: Total hourly cost (on-demand)
        reserved_discount_1mo:
          type: number
          description: Reservation discount % for 1 month
        reserved_discount_3mo:
          type: number
          description: Reservation discount % for 3 months
        reserved_discount_6mo:
          type: number
          description: Reservation discount % for 6 months
        available_ondemand:
          type: boolean
        available_interruptible:
          type: boolean
        available_reserved:
          type: boolean
        location:
          type: string
        cluster_name:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: Use a JWT access token or API key (prefixed with nv_)

````