Skip to main content
@cantarell/sdk v2.4.0

Build the Physics of Fuel

Integrate directly into the Cantarell OS Protocol. Access real-time spot pricing, automate CRE compliance, and trigger terminal manifest WebHooks in milliseconds.

execute_trade.ts
import { Cantarell } from '@cantarell/sdk';

const client = new Cantarell({
apiKey: process.env.CANTARELL_API_KEY,
environment: 'production'
});

// Execute across any global market
const trade = await client.markets.execute({
nodeId: 'ARA_RTM_01',
commodity: 'VLSFO',
volumeMT: 5000,
market: 'emea'
});

console.log(`Executed in ${trade.market} at ${trade.pricePerMT}`);