/dailyfrackedfeet#
Fracked feet per day combines daily well level completions with reported well lateral length to give an estimate of the daily number of horizontal feet being fracked.
This endpoint returns data aggregated by sub-region.
Warning
A throttling mechanism with a rate limit of 300 requests per minute has been implemented for this endpoint. This is temporary and may be adjusted in the future.
Endpoint#
POST |
https://hyperion.api.synmax.com/v3/dailyfrackedfeet |
Usage#
Python#
- client.daily_fracked_feet(payload=ApiPayload(end_date=None, region=[None], start_date=None, sub_region=[None]))#
Returns fracked feet per day aggregated by sub-region.
Object returned is a pandas DataFrame.
Note
To learn how to setup and use Python client, refer to Setup and Usage .
Parameters#
Query#
Parameter |
Type |
Description |
Example |
---|---|---|---|
region |
string array |
Limit search by a list of regions (clusters of multiple major producing basins). |
|
sub_region |
string array |
Limit search by a list of subregions (clusters of several counties forming a major producing basin). |
|
start_date |
string |
Limit search to a start date. Date formatting - [“YYYY-MM-DD”] |
|
end_date |
string |
Limit search to an end date. Date formatting - [“YYYY-MM-DD”] |
|
Response#
Parameter |
Type |
Description |
Example |
---|---|---|---|
date |
string |
Date of observation. Date formatting - [“YYYY-MM-DD”] |
“2022-06-01” |
region |
string |
Aggregation of multiple major producing basins. |
“GULF” |
sub_region |
string |
Aggregation of several counties, typically representing a major producing basin. |
“S LA” |
fracked_feet |
float |
Aggregate fracked feet estimate. |
1057.5 |
Responses#
Normal Output#
date |
fracked_feet |
region |
sub_region |
---|---|---|---|
2020-09-30 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-01 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-02 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-03 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-04 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-05 |
1062.2916666666665 |
gulf |
Central - TX |
2020-10-08 |
490.28846153846155 |
gulf |
Central - TX |
2020-10-09 |
490.28846153846155 |
gulf |
Central - TX |
2020-10-10 |
490.28846153846155 |
gulf |
Central - TX |
2020-10-11 |
490.28846153846155 |
gulf |
Central - TX |
Note
Output data will return as “null” when input data is invalid or does not exist.