Skip to main content
GET
/
locations
/
{locationId}
/
limits
Get a location's permanent limit and all priority profiles
curl --request GET \
  --url https://api.ridergy.com/v1/locations/{locationId}/limits \
  --header 'x-api-key: <api-key>'
{
  "locationId": "3632155",
  "permanentLimitKw": 100,
  "effectiveLimitKw": 50,
  "profiles": [
    {
      "priority": 5,
      "limitKw": 50,
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Per-tenant API key. Tenant is derived from the key — never from the request.

Path Parameters

locationId
string
required

Response

Location limits

locationId
string
Example:

"3632155"

permanentLimitKw
number | null
Example:

100

effectiveLimitKw
number | null
Example:

50

profiles
object[]