Skip to main content
POST
/
platform
/
v2
/
sites
/
{site_id}
/
actual
Upload Site Actuals
import requests

url = "https://api.rebase.energy/platform/v2/sites/{site_id}/actual"

payload = { "data": [
        {
            "valid_time": "2026-01-01T00:00:00Z",
            "value": 6000
        }
    ] }
headers = {
    "Authorization": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{}

Documentation Index

Fetch the complete documentation index at: https://docs.rebase.energy/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your API key. This is required to access our API programatically. You can view your API key in the Rebase dashboard.

Path Parameters

site_id
string
required

Body

application/json
data
ActualUploadRow · object[]
required
Example:
[
{
"valid_time": "2026-01-01T00:00:00Z",
"value": 6000
}
]
type
string
default:power
Example:

"power"

Response

Successful Response

The response is of type Response Upload Site Actuals Platform V2 Sites Site Id Actual Post · object.