Skip to main content
GET
/
company
/
{id}
/
paas-usage
Get daily usage for a company
curl --request GET \
  --url https://api.sevalla.com/v2/company/{id}/paas-usage \
  --header 'Authorization: Bearer <token>'
{
  "company": {
    "paas_usage": [
      {
        "id": "cc3f2b21-57fb-4bdc-b022-eb998a3ce167-2025-06-28-appBandwidth-bandwidthStandard",
        "date": 1751105724000,
        "category": "appBandwidth",
        "id_resource": "cc3f2b21-57fb-4bdc-b022-eb998a3ce167",
        "usage": 1.5,
        "cost": 0.25
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Example:

"54fb80af-576c-4fdc-ba4f-b596c83f15a1"

Query Parameters

period_offset
integer | null
default:0

Period offset for the usage data. 0 is the current period, -1 is the previous period, etc. Accepts values from 0 to -5.

Required range: -5 <= x <= 0
Example:

0

Response

Successfully retrieved usage data

company
object
required