Forward price scenario for LFO at Singapore, for the 6th nearest futures contract month. Used for longer-range planning: understanding where prices are likely to sit several months ahead, based on crude oil futures curves. contract steps monthly from the nearest expiry, so contract 6 looks roughly five months out from the request date.
Request
JSON
{
"query": "query GetFutures($input: BunkerInsightsGetFuturesEstimatesInput!) { bunkerInsightsGetFuturesEstimates(input: $input) }",
"variables": {
"input": {
"date": "2026-05-28",
"fuelType": "LFO",
"ports": ["Singapore"],
"contract": 6
}
}
}
Response
JSON
{
"data": {
"bunkerInsightsGetFuturesEstimates": {
"estimateGeneratedOn": "2026-05-27",
"estimateDate": "2026-05-28",
"data": [
{
"port": "SINGAPORE",
"portUnlocode": "SGSIN",
"aiInferredUnlocode": false,
"futuresEstimateUSDperMT": 791.87,
"probabilityOfUnderEstimationPct": 57,
"probabilityOfOverEstimationPct": 43,
"futuresEstimateMonth": "December 2026",
"latitude": 1.2476,
"longitude": 103.8362
}
]
}
}
}
GraphQL form
GraphQL
query BunkerInsightsGetFuturesEstimates {
bunkerInsightsGetFuturesEstimates(input: {
date: "2026-05-28"
fuelType: "LFO"
ports: ["Singapore"]
contract: 6
})
}