logo
InstancesList my instances
Instances

List my instances

Get list of your active GPU rentals.

curl -X GET "https://api.gpuniq.com/v1/instances/my?page=25&page_size=25" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
{
  "data": {
    "items": [
      {
        "task_id": 123,
        "agent_id": 123,
        "status": "example_string",
        "ssh_host": "example_string",
        "ssh_port": 42,
        "ssh_password": "example_string",
        "started_at": "2024-12-25T10:00:00Z",
        "hourly_cost": 3.14
      }
    ],
    "total": 42
  }
}
GET
/v1/instances/my
GET
Security Scheme
Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

Request Preview
Response

Response will appear here after sending the request

Authentication

BearerAuth
header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Query Parameters

Responses

dataobject
Was this page helpful?
Built with Documentation.AI

Last updated Jan 9, 2026