Metal Radar Docs
Datapoint

Search datapoint

GET
/v3/datapoint/search

Authorization

AuthorizationRequiredBearer <token>

In: header

Query Parameters

termRequiredstring
pageinteger | null | null
Minimum: 1

Response Body

The paginated collection of DatapointDataOut

TypeScript Definitions

Use the response body type in TypeScript.

dataRequiredarray<DatapointDataOut>

The list of items

paginationobject
curl -X GET "https://api.metalradar.com/v3/datapoint/search?term=copper&page=1" \
  -H "Authorization: Bearer <token>"
{
  "data": [
    {
      "id": "string",
      "label": "string",
      "unit": "string",
      "per": "string"
    }
  ],
  "pagination": {
    "items": 0,
    "total": 0,
    "pageSize": 0,
    "page": 0,
    "pages": 0
  }
}