GET Daily Forecast Volumes Beyond 5 Years

Hello,

I have been trying out the GET request for forecast-daily-volumes. The request executes, but it is returning only the first five years of each well’s forecast. Is there a way to increase the amount of daily volumes returned per well or modify the request to grab the next five years of data? Modifying startDate in the request did not seem to work.

Thanks!

Hi Austin,

Unfortunately, we do have a 5-year limitation in place on Daily Forecast Volume pulls. Can I please see the request you’re using? You can set a start and enddate for this.

url = "https://api.combocurve.com/v1/forecast-daily-volumes?project=<string>&forecast=<string>&well=<string>&skip=0&take=25&startDate=<date>&endDate=<date>"

Hey Nick,

I’m using the inputs below. When I specify a start date, it works as long as the start date is within 5 years of the start date of the forecast. Anything beyond 5 years comes back as blank. In the example below, if I don’t designate a start date, it defaults to the actual start date of 2021-12-01 and gives me 5 years of forecast data. If I set the start date to 2026-12-01, it returns 1 day of data and nothing beyond that.

skip = 0
take = 200
projectid= ‘65c546287133ac77c3067ea1’
forecastid=‘65c64111c95bada1673a116b’
wellid=‘6216634637d0c83f3b204395’
startDate=‘2026-12-01’
endDate=‘2029-01-01’

url = f’https://api.combocurve.com/v1/forecast-daily-volumes?project={projectid}&forecast={forecastid}&well={wellid}&skip={skip}&take={take}&startDate={startDate}&endDate={endDate}

image

@Jeff_Hopkins can you please review this one? Is this by design?

@Nick_Carter Can we confirm if the forecast has data beyond five years? I would probably try exporting the same forecast/well from the UI

I tried multiple wells within this forecast set and none of them would export anything beyond the 5th year of the forecast. When exporting forecast data from the UI, all wells have forecast data through 2080.

Can you try your process again? We just pushed a small fix that should address this issue

Looks to be working now! Thanks for the help.