Marketplace
List available GPUs
Browse available GPUs with filtering options.
curl -X GET "https://api.gpuniq.com/v1/marketplace/list?gpu_model=example_string&min_vram_gb=42&max_vram_gb=42&min_price_per_hour=29.99&max_price_per_hour=29.99&location=example_string&verified=true&gpu_count=10&page=25&page_size=25" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
import requests
import json
url = "https://api.gpuniq.com/v1/marketplace/list?gpu_model=example_string&min_vram_gb=42&max_vram_gb=42&min_price_per_hour=29.99&max_price_per_hour=29.99&location=example_string&verified=true&gpu_count=10&page=25&page_size=25"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.gpuniq.com/v1/marketplace/list?gpu_model=example_string&min_vram_gb=42&max_vram_gb=42&min_price_per_hour=29.99&max_price_per_hour=29.99&location=example_string&verified=true&gpu_count=10&page=25&page_size=25", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
)
func main() {
req, err := http.NewRequest("GET", "https://api.gpuniq.com/v1/marketplace/list?gpu_model=example_string&min_vram_gb=42&max_vram_gb=42&min_price_per_hour=29.99&max_price_per_hour=29.99&location=example_string&verified=true&gpu_count=10&page=25&page_size=25", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.gpuniq.com/v1/marketplace/list?gpu_model=example_string&min_vram_gb=42&max_vram_gb=42&min_price_per_hour=29.99&max_price_per_hour=29.99&location=example_string&verified=true&gpu_count=10&page=25&page_size=25')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
response = http.request(request)
puts response.body
{
"data": {
"items": [
{
"id": 123,
"hostname": "John Doe",
"location": "example_string",
"status": "online",
"gpu_model": "example_string",
"gpu_count": 10,
"vram_gb": 42,
"total_ram_gb": 42,
"price_per_hour": 29.99,
"price_per_day": 29.99,
"price_per_week": 29.99,
"price_per_month": 29.99,
"verified": true,
"reliability": 3.14
}
],
"total": 42,
"page": 25,
"page_size": 25
}
}
GET
/v1/marketplace/list
GET
Security Scheme
Bearer Token (JWT)
Bearer Tokenstring
RequiredBearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically
query
gpu_modelstring
Filter by GPU model (e.g., "RTX 4090", "A100")
query
min_vram_gbinteger
Minimum VRAM in GB
query
max_vram_gbinteger
Maximum VRAM in GB
query
min_price_per_hournumber
Minimum price per hour in USD
query
max_price_per_hournumber
Maximum price per hour in USD
query
locationstring
Geographic location filter
query
verifiedboolean
Show only verified providers
query
gpu_countinteger
Minimum GPU count
query
pageinteger
Page number
query
page_sizeinteger
Items per page
Request Preview
Response
Response will appear here after sending the request
Authentication
BearerAuth
header
Authorizationstring
RequiredBearer token (JWT). Authentication token required.
Query Parameters
gpu_modelstring
Filter by GPU model (e.g., "RTX 4090", "A100")
min_vram_gbinteger
Minimum VRAM in GB
max_vram_gbinteger
Maximum VRAM in GB
min_price_per_hournumber
Minimum price per hour in USD
max_price_per_hournumber
Maximum price per hour in USD
locationstring
Geographic location filter
verifiedboolean
Show only verified providers
gpu_countinteger
Minimum GPU count
pageinteger
Page number
page_sizeinteger
Items per page
Responses
dataobject
Was this page helpful?
Built with Documentation.AI
Last updated Jan 9, 2026