Ir al contenido
GET /v1/crush

Soybean crush spread (processing margin)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/commodityspreads-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}