Soybean Meal Futures Price API
Soybean Meal is a high-protein byproduct of soybean oil extraction, primarily used as protein-rich animal feed for poultry, pigs, and cattle. Soybean Meal futures trade on CME and are priced in USD per short ton. The Soybean Meal Price API provides real-time market data for livestock producers and agricultural traders.
Use Cases
- Track soybean meal prices for livestock feed cost management
- Build animal feed price calculators for agricultural businesses
- Monitor soybean meal futures for poultry and pork industry analysis
- Integrate soybean meal pricing into feed procurement tools
/v1/commodityprice GET
https://api.api-ninjas.com/v1/commodityprice
Parameters
namerequiredName of commodity. Use
soybean_mealfor Soybean Meal Futures. See the full list of supported commodities.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
exchangeThe symbol of the exchange where the commodity is traded (e.g.,
CME).nameThe name of the commodity.
priceThe current price of the commodity in USD.
updatedThe Unix timestamp of the price update.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/commodityprice?name=soybean_mealHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/commodityprice?name=soybean_meal" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed above, you can still make API calls by using any HTTP request library and following the documentation above.
/v1/commoditypricehistorical GET Premium Only
https://api.api-ninjas.com/v1/commoditypricehistorical
Returns historical Soybean Meal Futures futures price data in OHLCV (Open, High, Low, Close, Volume) format. Data is returned in descending order (most recent first), and all prices are in USD.
Parameters
namerequiredUse
soybean_mealfor Soybean Meal Futures.periodoptionalTime interval between data points. Valid values:
1m,5m,15m,30m,1h,4h,1d. Default is1h.startoptionalStart timestamp in Unix format. Defaults to 24 hours ago.
endoptionalEnd timestamp in Unix format. Defaults to current time.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON array of objects or an error if the request is unsuccessful.
openOpening price in USD.
highHighest price in USD.
lowLowest price in USD.
closeClosing price in USD.
volumeTrading volume.
timeUnix timestamp of the period.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/commoditypricehistorical?name=soybean_meal&period=1hHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/commoditypricehistorical?name=soybean_meal&period=1h" \
-H "X-Api-Key: YOUR_API_KEY"