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

# Vendors

> Get list of all GPU vendors with metadata (GPU models, regions, record counts)

## Example

List every vendor covered by the API:

```bash theme={null}
curl -H "Authorization: Bearer $TOKEN" \
  "https://data-api.compute-index.com/v1/vendors"
```


## OpenAPI

````yaml pricing/openapi.json GET /v1/vendors
openapi: 3.1.0
info:
  title: GPU Pricing API
  description: |2-

        **GPU Pricing API** provides real-time and historical pricing data
        for GPU compute across 50+ cloud providers and GPU marketplaces.

        ## Features
        - Search current prices across vendors
        - Historical price trends
        - GPU transaction data
        - **Informational Price Index** — EWMA-smoothed composite indices by GPU family, region, and contract type
        - **Transaction Price Index** — smoothed indices derived from verified GPU transactions
        - **Custom Index** — EWMA-smoothed H100 sub-model indices by region, contract type, and vendor category
        - Global region coverage (US, EU, APAC)
        - GPU availability tracking
        - Scope-based API key access control

        ## Authentication
        Send your token as a Bearer token in the `Authorization` header on every request:
        ```
        Authorization: Bearer YOUR_TOKEN
        ```
        Example:
        ```bash
        curl -H "Authorization: Bearer $TOKEN" "https://data-api.compute-index.com/v1/vendors"
        ```
        Tokens are issued by Compute Index (david@compute-index.com); long-lived, treat as secrets.

        > The legacy `X-API-Key` header is deprecated — use the `Authorization: Bearer` header above.

        ## Rate Limits
        - **Free tier**: 100 requests/minute, 10,000/day
        - **Pro tier**: 1,000 requests/minute, 100,000/day
        - **Enterprise**: Custom limits

        ## Data Coverage
        - 50+ vendors (AWS, Azure, GCP, Oracle, CoreWeave, Lambda, RunPod, Vast.AI, FluidStack, Vultr, etc.)
        - 30M+ historical pricing records
        - Updated multiple times daily

        ## Support
        - Support: david@compute-index.com
        
  contact:
    name: API Support
    email: david@compute-index.com
  license:
    name: Commercial License
    url: https://compute-desk.com/license
  version: 1.0.0
servers:
  - url: https://data-api.compute-index.com
security: []
paths:
  /v1/vendors:
    get:
      tags:
        - Metadata
      summary: List all vendors
      description: >-
        Get list of all GPU vendors with metadata (GPU models, regions, record
        counts)
      operationId: list_vendors_v1_vendors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VendorListResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    VendorListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/VendorResponse'
          type: array
          title: Data
        total_count:
          type: integer
          title: Total Count
      type: object
      required:
        - data
        - total_count
      title: VendorListResponse
      description: Response schema for list of vendors
    VendorResponse:
      properties:
        vendor:
          type: string
          title: Vendor
        total_record_count:
          type: integer
          title: Total Record Count
          description: Total records (current + historical)
        open_record_count:
          type: integer
          title: Open Record Count
          description: Current price records (valid_to IS NULL)
        active_data_collection:
          type: boolean
          title: Active Data Collection
          description: Whether vendor is actively scraped (last_seen_at < 7 days old)
        data_date_range:
          type: string
          title: Data Date Range
          description: Date range of available data
        contract_types:
          items:
            type: string
          type: array
          title: Contract Types
          description: Available contract types
        contract_terms:
          items:
            type: string
          type: array
          title: Contract Terms
          description: Available contract terms (non-null only)
        gpu_models:
          items:
            type: string
          type: array
          title: Gpu Models
          description: Available GPU models
        regions:
          items:
            type: string
          type: array
          title: Regions
          description: Available regions
      type: object
      required:
        - vendor
        - total_record_count
        - open_record_count
        - active_data_collection
        - data_date_range
        - contract_types
        - contract_terms
        - gpu_models
        - regions
      title: VendorResponse
      description: Response schema for vendor metadata
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````