GET
/
v2
/
schema
/
attributes
cURL
curl --request GET \
  --url https://api.pelanor.io/v2/schema/attributes \
  --header 'Authorization: Bearer <token>'
{
  "properties": [
    {
      "id": "<string>",
      "name": "<string>",
      "isAvailable": true
    }
  ],
  "metrics": [
    {
      "id": "<string>",
      "name": "<string>",
      "isAvailable": true
    }
  ]
}
This endpoint provides a list of all properties and metrics supported in Pelanor, along with their descriptions.

Types of Attributes

  • Properties
    Metadata collected by Pelanor from billing data exports, service integrations, and agents.
    Examples: Region, CloudServiceProvider, Instance Type.
  • Metrics
    Analytics collected from various integrations, including Custom Metrics.
Descriptions are currently available only for Properties.

Usage

When building requests to endpoints that accept filters or properties, use the id of the property or metric as returned from this endpoint.
Examples of relevant endpoints:
Custom Dimensions and Tags are also considered properties.
They are designated with a special prefix, for example:
Dimension:some-dimension

Authorizations

Authorization
string
header
required

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

Response

200
application/json

A successful response.

The response is of type object.