Trino · Example Payload

Trino Get Cluster Info Example

AnalyticsBig DataDistributed SQLMySQLNoSQLQueriesSQL

Trino Get Cluster Info Example is an example object payload from Trino, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "http://localhost:8080/v1/info",
    "headers": {
      "X-Trino-User": "admin"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "nodeVersion": {
        "version": "480"
      },
      "environment": "production",
      "coordinator": true,
      "starting": false,
      "uptime": "3 days, 4 hours, 12 minutes"
    }
  }
}