Luxor Documentation Hub Logo
Energy/API Documentation/Sites

Get site details

Retrieves detailed information about a specific site by its ID.

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

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

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

Successful Response

{
  "min_load_kw": "string",
  "max_load_kw": "string",
  "comments": "string",
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "created_at": "2019-08-24T14:15:22Z",
  "updated_at": "2019-08-24T14:15:22Z",
  "settlement_point": {
    "name": "string",
    "iso_name": "string",
    "description": "string",
    "comments": "string",
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z",
    "iso": {
      "name": "string",
      "timezone": "string"
    }
  }
}