| 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  
uuid  
required

The UUID of your account

Filters for searching standing bids

The request object for searching standing bids

start_date  
date-time  
required

Start datetime range to get bids for (inclusive)

end_date  
date-time  
required

End datetime range to get bids for (inclusive).

End date must be max 24 hours after the start date

meter_ids  
array of objects  
Meter ids to get bids for. Limited at 100 meters per request.

page_token  
string  
Token of the page to request. Use `null` to request a new batch of results

market_type  
string  
enum

This can have the value "day-head" or "hour-ahead". It is used to decide the appropriate market to bid in.

Allowed:
`day-ahead` `hour-ahead`

#  `200`      A paginated list of standing bids that matched the search input

object

The response object searching standing bids

next_page_token  
string  
Token to be used in a subsequent request to get the next batch of results.

`null` will be returned when the last page of results has been reached.

results  
array of objects  
required

A list of the standing bids that were found

results*  
object

The object describing a standing bid

meter_id  
uuid  
required

The unique identifier of a meter

start_time  
date-time  
The start time of the bid

end_time  
date-time  
required

The end time of the bid

day_type  
string  
enum

This can have the value "business" or "non-business". Non-business days are weekend days and federal holidays.

`business` `non_business`

days_of_week  
array of objects  
This can have the value of list of days of week.

`MON` `TUE` `WED` `THU` `FRI` `SAT` `SUN`
hours  
array of objects  
required

length ≥ 1

A list of standing bid hour specifications

hours*  
object

The timeslot of a standing bid

hour_ending  
integer  
required

The ‘hour ending’ of the bid interval to be placed in local time

curve  
array of objects  
required

A list of quantity/price pairs

curve*  
object

A quantity/price pair on the bid curve

quantity_in_kw  
double  
required

0 to 1000000

The amount of the price point. The quantity must be specified in kW.

price  
double  
required

0 to 1000

The price of the price point in $/kWh.

market_type  
string  
enum

This can have the value "day-head" or "hour-ahead". It is used to decide the appropriate market to bid in.

`day-ahead` `hour-ahead`

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

#  `401`      Unauthorized

#  `403`      No access to this resource

#  `404`      Resource not found

#  `5XX`      Unexpected error

Updated 11 months ago

Base URL

https://api.staging.leap.energy/v1.1/account/{accountId}/bidding/standing_bids/search

```

xxxxxxxxxx

curl --request POST \

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

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

```

xxxxxxxxxx

{

"next_page_token": 2,

"results": [

{

"day_type": "business",

"meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",

"start_time": "2023-01-28T16:00:00Z",

"end_time": "2023-02-28T21:00:00Z",

"market_type": "day-ahead",

"hours": [

{

"hour_ending": 16,

"curve": [

{

"quantity_in_kw": 60,

"price": 0.85

},

{

"quantity_in_kw": 75,

"price": 0.95

}

]

},

{

"hour_ending": 17,

"curve": [

{

"quantity_in_kw": 70,

"price": 0.9

},

{

"quantity_in_kw": 85,

"price": 1.1

}

]

}

]

},

{

"day_type": "non_business",

"meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",

"market_type": "day-ahead",

"start_time": "2023-01-28T16:00:00Z",

"end_time": "2023-02-28T21:00:00Z",

"hours": [

{

"hour_ending": 16,

"curve": [

{

"quantity_in_kw": 60,

"price": 0.85

},

{

"quantity_in_kw": 75,

"price": 0.95

}

]

},

{

"hour_ending": 17,

"curve": [

{

"quantity_in_kw": 70,

"price": 0.9

},

{

"quantity_in_kw": 85,

"price": 1.1

}

]

}

]

}

]

}
