/lower_48_total_stf#
Provides STF production for TX, LA, NM, CO, ND, OK, OH, PA, WV, and WY, plus modeled production estimates for the remaining Lower-48 states using our daily production model based on interstate pipeline flows
Endpoint#
POST |
https://hyperion.api.synmax.com/v4/lower_48_total_stf |
Request Examples#
curl -X POST "https://hyperion.api.synmax.com/v4/lower_48_total_stf" \
-H "Content-Type: application/json" \
-H "Access-Key: $API_TOKEN" \
-d '{}'
from synmax.hyperion.v4 import HyperionApiClient
SYNMAX_ACCESS_TOKEN = "<YOUR_API_TOKEN>"
hyperion_api_client = HyperionApiClient(access_token=SYNMAX_ACCESS_TOKEN)
lower_48_total_stf_resp = hyperion_api_client.lower_48_total_stf({})
lower_48_total_stf_df = lower_48_total_stf_resp.df()
lower_48_total_stf_df.head()
Response#
Parameter |
Type |
Description |
Example |
|---|---|---|---|
date_prod |
string |
A date in YYYY-MM-DD format |
2021-11-24 |
prod_dry_gas_bcf_day |
number |
Daily dry gas production in billion cubic feet |
— |
Normal Output#
date_prod |
prod_dry_gas_bcf_day |
|---|---|
2025-07-01 |
106.9142111546099 |
2025-06-01 |
107.04984746571004 |
2025-08-01 |
105.10569826518154 |