Metal Radar Docs
Widget

Get widgets

Widgets are groups of datapoints and can be managed in the frontend using your developer account.

GET
/v3/widget/{ids}
AuthorizationBearer <token>

In: header

Path Parameters

idsstring

Comma separated list of widget ids.

Query Parameters

map?boolean

Indicates if map should be returned

Defaultfalse

Response Body

curl -X GET "https://data.metalradar.com/v3/widget/string?map=false"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "owner": "string",
      "contracts": "string"
    }
  ],
  "map": {
    "contracts": "string"
  }
}
{
  "message": "string"
}
{
  "message": "string",
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}