> For the complete documentation index, see [llms.txt](https://netmind-power.gitbook.io/netmind-power-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://netmind-power.gitbook.io/netmind-power-documentation/api/gpu-clusters/list-available-gpu-instances.md).

# List Available GPU Instances

Next, you need to view available GPU instances, including specifications such as CPU, memory, storage, bandwidth, and version. Review the returned details to select an instance that meets your requirements, and note down the **instance ID** for use in the next step.

Please refer to the **"Full API Reference"-"Rent GPU"-"POST /v1/rentgpu/images"** for details on how to create and manage custom image templates.

**Example Request:**

{% hint style="info" %}
Replace `{{API_TOKEN}}` with your actual token.
{% endhint %}

{% tabs %}
{% tab title="Curl" %}

```bash
curl --location 'https://api.netmind.ai/v1/rentgpu/machines' \
--header 'Authorization: Bearer {{API_TOKEN}}'
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

url = "https://api.netmind.ai/v1/rentgpu/machines"

payload = {}
headers = {
  'Authorization': 'Bearer {{API_TOKEN}}'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

```

{% endtab %}
{% endtabs %}

**Example Response:**

```json
[
    {
        "price": "0.2",
        "labels": [],
        "node_name": "d539aa78-d76a-4534-99ee-a3db30f3c740",
        "gpu_name": "NVIDIA_GeForce_RTX_3090",
        "gpu_count": 2,
        "gpu_memory": 24,
        "cpu_name": "AMD_Ryzen_Threadripper_PRO_3995WX_64-Cores",
        "cpu_count": 40,
        "cpu_per_gpu": 20,
        "memory_per_gpu": 40,
        "memory_total": 80,
        "disk_per_gpu": 300,
        "disk_total": 600,
        "region": "US",
        "network_upload_speed": 917,
        "network_download_speed": 789,
        "up_time": 764,
        "online_rate": 0.9539,
        "driver_version": "535.183.01",
        "cuda_version": "12.2",
        "nvlink_status": false,
    },
    ...
]
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://netmind-power.gitbook.io/netmind-power-documentation/api/gpu-clusters/list-available-gpu-instances.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
