LFO price estimates across all major bunkering hubs for a three-day window (26 to 28 May 2026), at a medium confidence level. Used to track how prices move across the global hub network over time: trend identification, port comparison, and price history for planning or reporting workflows.
Request
JSON
{
"query": "query GetTimeseries($input: BunkerInsightsGetTimeseriesEstimatesInput!) { bunkerInsightsGetTimeseriesEstimates(input: $input) }",
"variables": {
"input": {
"fuelType": "LFO",
"fromDate": "2026-05-26",
"toDate": "2026-05-28",
"riskLevel": "Medium"
}
}
}
Response (truncated to first record)
JSON
{
"data": {
"bunkerInsightsGetTimeseriesEstimates": {
"totalRecords": 54,
"totalPages": 1,
"currentPage": 1,
"pageSize": 1000,
"hasNext": false,
"hasPrevious": false,
"data": [
{
"estimateDate": "2026-05-26",
"estimateGeneratedOn": "2026-05-25",
"timeseriesAvailableFromUTC": "2026-06-09 04:55:05.353945+00:00",
"port": "NEW ORLEANS",
"portUnlocode": "USMSY",
"aiInferredUnlocode": false,
"estimateUSDperMT": 825.45,
"sensitivityToMarketConditionsUSDperMT": 1.92,
"probabilityOfUnderEstimationPct": 51,
"probabilityOfOverEstimationPct": 49,
"lowPriceEstimateUSDperMT": 800.69,
"highPriceEstimateUSDperMT": 883.23,
"latitude": 30.0554,
"longitude": -90.0748
}
]
}
}
}
Full response has 54 records total (18 hubs across 3 days) for this example query.
GraphQL form
GraphQL
query BunkerInsightsGetTimeseriesEstimates {
bunkerInsightsGetTimeseriesEstimates(input: {
fuelType: "LFO"
fromDate: "2026-05-26"
toDate: "2026-05-28"
riskLevel: "Medium"
})
}