Luxor Documentation Hub Logo
Energy/API Documentation/Sites

Get site

Retrieves details about a specific site by its ID including min and max load and settlement point information.

GET
/api/v1/energy/sites/{site_id}

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

site_idRequiredSite Id

The UUID of the site to retrieve

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

Successful Response

{
  "base_load_kw": "50.0",
  "comments": "Facility in Houston load zone",
  "created_at": "2025-01-15T10:30:00Z",
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "max_load_kw": "1000.0",
  "min_load_kw": "0.0",
  "resource_id": "CLIENT_ID_123",
  "settlement_point": {
    "comments": "Primary settlement point for Houston area",
    "created_at": "2025-01-10T08:00:00Z",
    "description": "Houston load zone settlement point",
    "display_name": "Houston Load Zone",
    "iso_name": "ERCOT",
    "name": "LZ_HOUSTON",
    "updated_at": "2025-01-10T08:00:00Z",
    "$id": "cd8d366c-1946-4c89-8110-4b9cd4403a11"
  },
  "updated_at": "2025-01-20T14:15:00Z"
}