/v1/crush
Soybean crush spread (processing margin)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/commodityspreads-api/v1/crush" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/commodityspreads-api/v1/crush", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/commodityspreads-api/v1/crush");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/commodityspreads-api/v1/crush",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "The board crush is the processing margin from crushing one bushel of soybeans into meal (0.022 short tons) and oil (11 lb), in USD per bushel: meal value + oil value − soybean cost. A wide crush means processors are profitable.",
"source": "Yahoo Finance (ZS=F, ZM=F, ZL=F)",
"spread": "soybean crush spread (board crush)",
"components": {
"soybeans_usd_bu": 11.133,
"oil_value_usd_bu": 8.037,
"meal_value_usd_bu": 6.69,
"soybean_oil_usc_lb": 73.06,
"soybean_meal_usd_ton": 304.1
},
"value_usd_per_bushel": 3.594
},
"meta": {
"timestamp": "2026-06-12T10:35:29.425Z",
"request_id": "10e80f58-4212-4e1b-a182-0940a9950737"
},
"status": "ok",
"message": "Crush spread retrieved successfully",
"success": true
}