Luxor Documentation Hub Logo
Energy/API Documentation/Ancillary Services

Get AS (Ancillary Service) types and descriptions

Retrieves available AS types for the ISO that the specified site belongs to.

GET
/api/v1/energy/as-types/{site_id}

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

site_idRequiredSite Id

The UUID of the site

Format: "uuid"
curl -X GET "https://app.luxor.tech/api/v1/energy/as-types/497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "Authorization: Bearer <token>"

Successful Response

{
  "as_types": [
    {
      "description": "Reserve capacity that can be deployed quickly (near instantaneous) to restore or maintain system frequency following a significant disturbance. Non-controllable load resources can participate in this ancillary service.",
      "iso_name": "ERCOT",
      "response_seconds": 600,
      "type": "RRS"
    }
  ]
}