/lng_feed_gas#
Fetch daily LNG feed gas deliveries by terminal
Endpoint#
POST |
https://hyperion.api.synmax.com/v4/lng_feed_gas |
Request Examples#
curl -X POST "https://hyperion.api.synmax.com/v4/lng_feed_gas" \
-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)
lng_feed_gas_resp = hyperion_api_client.lng_feed_gas()
lng_feed_gas_df = lng_feed_gas_resp.df()
lng_feed_gas_df.head()
# Example of a Windows PowerShell request to the lng_feed_gas endpoint.
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("access_key", "<YOUR_API_TOKEN>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-RestMethod 'https://hyperion.api.synmax.com/v4/lng_feed_gas' -Method 'POST' -Headers $headers -Body $body
$response | ConvertTo-Json
Parameters#
Query#
Parameter |
Type |
Description |
Example |
|---|---|---|---|
gas_day_max |
string |
End of gas day range (inclusive) |
— |
gas_day_min |
string |
Start of gas day range (inclusive) |
— |
terminal_name |
string array |
An array of strings |
— |
updated_at_max |
string |
Only include rows updated at or before this timestamp, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS) |
— |
updated_at_min |
string |
Only include rows updated at or after this timestamp, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS) |
— |
Response#
Parameter |
Type |
Description |
Example |
|---|---|---|---|
feed_gas_bcf_day |
number |
Daily feed gas deliveries in Bcf/d |
— |
gas_day |
string |
Gas day for the feed gas observation |
— |
terminal_name |
string |
LNG export terminal name |
Sabine Pass |
updated_at |
string |
Last update timestamp in ISO 8601 format (YYYY-MM-DDTHH:MM:SS) |
— |
Normal Output#
gas_day |
terminal_name |
feed_gas_bcf_day |
updated_at |
|---|---|---|---|
2024-01-08 |
Elba Island |
0.365567 |
2026-08-10T21:11:35.779356+00:00 |
2024-01-08 |
Cameron |
2.354 |
2026-08-10T21:11:35.779360+00:00 |
2024-01-08 |
Calcasieu Pass |
1.8823949999999998 |
2026-08-10T21:11:35.779364+00:00 |
2024-01-08 |
Corpus Christi |
2.3797057295881956 |
2026-08-10T21:11:35.779368+00:00 |
2024-01-08 |
Cove Point |
0.811597 |
2026-08-10T21:11:35.779373+00:00 |
2024-01-08 |
Freeport |
2.185318280809032 |
2026-08-10T21:11:35.779377+00:00 |
2024-01-09 |
Sabine Pass |
4.3162199999999995 |
2026-08-10T21:11:35.779381+00:00 |
2024-01-09 |
Elba Island |
0.385001 |
2026-08-10T21:11:35.779385+00:00 |
2024-01-09 |
Cameron |
2.3491229999999996 |
2026-08-10T21:11:35.779389+00:00 |
2024-01-09 |
Calcasieu Pass |
1.8936979999999999 |
2026-08-10T21:11:35.779393+00:00 |