Place, modify or cancel a bid

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

🚧

CAISO Only & Generally Leap Managed

Submitting bids is only applicable for the CAISO wholesale marketplace. Most partners leverage Leap to manage bids on their behalf based on their dispatch preferences (frequency & timing). However, these bid endpoints are available for partners that would like to manage their own bids.

accountId

currency

bids

bids*

meter_id

market_type

timeslots

timeslots*

start_time

end_time

curve

curve*

`` 202 The bid was submitted successfully

validations

validations*

code

type

message

currency

results

results*

meter_id

timeslots

timeslots*

start_time

end_time

curve

curve*

quantity_in_kw

price

version

bid_status

market_status

`` 400 The request could not be parsed or is invalid

`` 401 Unauthorized

`` 403 No access to this resource

`` 5XX Unexpected error


Shell Node Ruby PHP Python

Base URL
https://api.staging.leap.energy/v1.1/account/{accountId}/bidding/bid

xxxxxxxxxx

curl --request POST \

--url https://api.staging.leap.energy/v1.1/account//bidding/bid \

--header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '

{
  "currency": "USD",
  "bids": [
    {
      "timeslots": []
    }
  ]
}
'
xxxxxxxxxx

{
  "currency": "USD",
  "results": [
    {
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "timeslots": [
        {
          "start_time": "2023-01-28T16:00:00Z",
          "end_time": "2023-01-28T17:00:00Z",
          "bid_status": "Accepted",
          "market_type": "day-ahead",
          "market_status": "Open",
          "version": 1,
          "curve": [
            {
              "quantity_in_kw": 60,
              "price": 0.25
            },
            {
              "quantity_in_kw": 80,
              "price": 0.28
            }
          ]
        },
        {
          "start_time": "2023-01-28T17:00:00Z",
          "end_time": "2023-01-28T18:00:00Z",
          "bid_status": "Accepted",
          "market_status": "Open",
          "version": 1,
          "market_type": "day-ahead",
          "curve": [
            {
              "quantity_in_kw": 60,
              "price": 0.25
            },
            {
              "quantity_in_kw": 80,
              "price": 0.28
            }
          ]
        }
      ]
    }
  ]
}