GET
/
metrics
/
{basin}
/
{stream}
curl --request GET \
  --url https://aws.s2.dev/v1/metrics/{basin}/{stream} \
  --header 'Authorization: Bearer <token>'
{
  "values": [
    {
      "scalar": {
        "name": "<string>",
        "unit": "bytes",
        "value": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

basin
string
required

Basin name.

stream
string
required

Stream name.

Response

200
application/json

The response is of type object.