Skip to content

Congestion Management

This API provides congestion data to support grid management and decision-making. It is used exclusively by GOPACS to access spread bucket information related to electricity grid congestion

NOTE: This endpoint can be only used by GOPACS.

Create congestion spread bucket

Request

Creates congestion spread bucket with specified orders

Security
api-key
Bodyapplication/jsonrequired
clearingIdstring, non-emptyrequired
orderCallGroupsArray of objects(OrderCallGroupAPIView)required
POST
/public-api/2.0/electricity/congestion-spread-bucket
curl -i -X POST \
  https://acc-trading.etpa.nl/public-api/2.0/electricity/congestion-spread-bucket \
  -H 'Content-Type: application/json' \
  -H 'api_key: YOUR_API_KEY_HERE' \
  -d '{
    "clearingId": "string",
    "orderCallGroups": [
      {
        "orderCallGroupId": "string",
        "executionType": "FILL_OR_KILL",
        "orders": [
          {
            "orderId": "string",
            "quantity": 0
          }
        ]
      }
    ]
  }'

Responses

OK

Bodyapplication/json
GOPACSClearingIdstring
ETPAClearingIdstring
Response
{ "GOPACSClearingId": "string", "ETPAClearingId": "string" }