GET
/
api
/
v0
/
users
/
{user_id}
/
ipaddrs
/
show ipaddrs
curl --request GET \
  --url https://console.vast.ai/api/v0/users/{user_id}/ipaddrs/ \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "results": [
    {
      "id": 123,
      "user_id": 456,
      "ip_address": "192.168.1.1",
      "timestamp": "2023-10-01T12:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

The ID of the user whose IP address history is being retrieved.

Response

Success response with IP address history

success
boolean
Example:

true

results
object[]