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

datetime?string

Request the data as it was at a specific datetime. Accepts timestamp, ISO 8601 datetime/date and natural language expressions

Formatdate-time
map?boolean

add a map of the contracts and its part to the response

Defaultfalse

Response Body

curl -X GET "https://data.metalradar.com/v3/widget/string?datetime=2025-01-01&map=false"
{
  "status": "success",
  "error": "general.not_found",
  "data": [
    "string"
  ],
  "map": [
    "string"
  ],
  "message": "string",
  "meta": []
}
{
  "message": "string"
}
{
  "message": "string",
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}