GET
/
api
/
v0
/
machines
/
{machine_id}
/
reports
show reports
curl --request GET \
  --url https://console.vast.ai/api/v0/machines/{machine_id}/reports \
  --header 'Authorization: Bearer <token>'
[
  {
    "problem": "<string>",
    "message": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

machine_id
integer
required

The unique identifier of the machine.

Response

An array of reports for the specified machine.

problem
string

The type of problem reported.

message
string

Detailed message describing the problem.

created_at
string<date-time>

Timestamp when the report was created.