get https://enact-functionapp-siteapi.azurewebsites.net/api/EuropeIndexDefaultIndexInformation
This endpoint returns the information of the default German indices produced by LCP Delta's optimisation algorithm (see Enact's index page).
For each default index, this endpoint returns its GUID (which allows querying of its actual data via a POST request) as well as the information related to the index, for example the BESS capacity and duration, or the different markets the BESS could participate in.
Using the LCPDelta Python Package
Synchronous
from lcp_delta import enact
from datetime import date
enact_api_helper = enact.APIHelper(username, public_api_key)
response_dataframe = enact_api_helper.get_default_german_indices()
print(response_dataframe)
Asynchronous
from lcp_delta import enact
from datetime import date
import asyncio
async def main():
enact_api_helper = enact.APIHelper(username, public_api_key)
response_dataframe = await enact_api_helper.get_default_german_indices_async()
print(response_dataframe)
asyncio.run(main())