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

# List GPU Registry Entries



## OpenAPI

````yaml https://api.dispersed.com/openapi.json get /v1/gpu-registry
openapi: 3.1.0
info:
  title: Dispersed API
  version: 1.0.0
servers:
  - url: https://api.dispersed.com
security: []
paths:
  /v1/gpu-registry:
    get:
      tags:
        - GPU Registry
      summary: List GPU Registry Entries
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 50
            example: 1
          required: false
          name: limit
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 9007199254740991
            example: 1
          required: false
          name: page
          in: query
        - schema:
            type: string
            example: created_at OR -created_at
          required: false
          name: sort
          in: query
        - schema:
            type: string
            example: 0.1,1.0
          required: false
          name: filter[performance_score]
          in: query
        - schema:
            type: string
            example: 0.25,0.50
          required: false
          name: filter[hourly_rate_usd]
          in: query
        - schema:
            type: string
            example: '*090'
          required: false
          name: filter[gpu_model_name]
          in: query
        - schema:
            type: string
            example: 'true'
          required: false
          name: filter[is_qualified]
          in: query
        - schema:
            type:
              - integer
              - 'null'
            minimum: 0
            description: Minimum available node count.
            example: '1'
          required: false
          description: Minimum available node count.
          name: filter[min_available_count]
          in: query
        - schema:
            type:
              - number
              - 'null'
            minimum: 0
            description: Minimum VRAM in GB. Useful for filtering by recipe requirements.
            example: '24'
          required: false
          description: Minimum VRAM in GB. Useful for filtering by recipe requirements.
          name: filter[min_vram_gb]
          in: query
        - schema:
            type:
              - boolean
              - 'null'
            description: >-
              Only show GPUs with at least one available node. By default, all
              online GPUs are shown.
            example: 'true'
          required: false
          description: >-
            Only show GPUs with at least one available node. By default, all
            online GPUs are shown.
          name: filter[only_available]
          in: query
        - schema:
            type:
              - boolean
              - 'null'
            description: >-
              Include GPUs with no online nodes. By default, only online GPUs
              are shown.
            example: 'false'
          required: false
          description: >-
            Include GPUs with no online nodes. By default, only online GPUs are
            shown.
          name: filter[include_offline]
          in: query
      responses:
        '200':
          description: List of GPU Registry entries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListGpuRegistryResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListGpuRegistryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/GpuRegistryResponse'
        limit:
          type: integer
        page:
          type: integer
        total:
          type: integer
      required:
        - data
        - limit
        - page
        - total
    ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
        - error
    GpuRegistryResponse:
      type: object
      properties:
        uuid:
          type:
            - string
            - 'null'
        gpu_model_name:
          type: string
        vram_gb:
          type: number
        performance_score:
          type: number
        hourly_rate_usd:
          type: number
        hourly_rate_render:
          type: number
        online_count:
          type: number
          default: 0
          description: >-
            Number of nodes with this GPU that are currently online and eligible
            to receive work; connected, healthy, and on a current client
            version. Nodes that are offline, stopping, busy, or out of
            compliance are not counted. When your account has a region or
            geography policy, only nodes that satisfy that policy are counted.
        available_count:
          type: number
          default: 0
          description: >-
            Number of nodes with this GPU that could accept a new job
            immediately; a subset of `online_count` that excludes nodes already
            running or preparing work.
        is_qualified:
          type: boolean
        object:
          type: string
          enum:
            - gpu_registry
        created_at:
          type:
            - string
            - 'null'
          format: date-time
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
      required:
        - gpu_model_name
        - vram_gb
        - performance_score
        - hourly_rate_usd
        - hourly_rate_render
        - is_qualified
        - object
        - created_at
        - updated_at
    Error:
      type: object
      properties:
        code:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
              expected:
                type: string
              input:
                type: string
              keys:
                type: array
                items:
                  type: string
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
            required:
              - message
              - path
          default: []
        message:
          type: string
        status:
          type: number
        timestamp:
          type: string
      required:
        - code
        - message
        - status
        - timestamp

````