What LFO would cost at Singapore if crude oil were trading at 75 USD/barrel, regardless of where crude is actually priced today, for a 530 MT stem. A what-if tool for modelling how bunker costs change under different crude price assumptions: budget planning, contract negotiation, voyage P&L stress tests.
Request
JSON
{
"query": "query GetScenario($input: BunkerInsightsGetScenarioEstimatesInput!) { bunkerInsightsGetScenarioEstimates(input: $input) }",
"variables": {
"input": {
"date": "2026-05-28",
"fuelType": "LFO",
"ports": ["Singapore"],
"crudePriceScenario": 75,
"quantity": 530,
"riskLevel": "0.5"
}
}
}
Response
JSON
{
"data": {
"bunkerInsightsGetScenarioEstimates": {
"modelTrainedOn": "2026-05-27",
"estimateScenarioDate": "2026-05-28",
"data": [
{
"port": "SINGAPORE",
"portUnlocode": "SGSIN",
"aiInferredUnlocode": false,
"crudePriceScenarioUSDperBarrel": 75,
"quantityMT": 530,
"referenceBunkeringHub": "SINGAPORE",
"estimateUSDperMT": 787.18,
"sensitivityToMarketConditionsUSDperMT": 2.46,
"probabilityOfUnderEstimationPct": 57,
"probabilityOfOverEstimationPct": 43,
"lowPriceEstimateUSDperMT": 763.56,
"highPriceEstimateUSDperMT": 842.28
}
],
"warnings": [],
"substitutions": []
}
}
}
GraphQL form
GraphQL
query BunkerInsightsGetScenarioEstimates {
bunkerInsightsGetScenarioEstimates(input: {
date: "2026-05-28"
fuelType: "LFO"
ports: ["Singapore"]
crudePriceScenario: 75
quantity: 530
riskLevel: "0.5"
})
}