---
title: "List available hardware configurations"
method: GET
path: "/hardware"
tags: ["Hardware"]
---

# List available hardware configurations

`GET /hardware`

Returns a list of available hardware configurations for deploying models. When a model parameter is provided, it returns only hardware configurations compatible with that model, including their current availability status.

## Query parameters

- `model` string — Filter hardware configurations by model compatibility. When provided, the response includes availability status for each compatible configuration. [See all of Together AI's dedicated models](https://docs.together.ai/docs/dedicated-models)

## Response `200`

List of available hardware configurations

- object
  - `object` 'list', required — The object type, which is always `list`.
  - `data` HardwareWithStatus[], required
    - `object` 'hardware', required — The object type, which is always `hardware`.
    - `id` string, required — Unique identifier for the hardware configuration
    - `pricing` EndpointPricing, required — Pricing details for using an endpoint
      - `cents_per_minute` number, required — Cost per minute of endpoint uptime in cents
    - `specs` HardwareSpec, required — Detailed specifications of a hardware configuration
      - `gpu_type` string, required — The type/model of GPU
      - `gpu_link` string, required — The GPU interconnect technology
      - `gpu_memory` number, required — Amount of GPU memory in GB
      - `gpu_count` integer, required — Number of GPUs in this configuration
    - `availability` HardwareAvailability — Indicates the current availability status of a hardware configuration
      - `status` 'available' | 'unavailable' | 'insufficient', required — The availability status of the hardware configuration
    - `updated_at` string, date-time, required — Timestamp of when the hardware status was last updated

## Other responses

- `403` — Unauthorized
- `500` — Internal error

---

[API](https://skmtc.net/together/apis/together-apis.md) · [All operations](https://skmtc.net/together/apis/together-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/together/together-apis/revisions/468edbdc879c/schema)
