commodities_wheat
Access wheat price data over monthly, quarterly, or annual intervals. Retrieve results in JSON or CSV format for financial analysis and decision-making.
Instructions
Retrieves wheat prices.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Response data format. | |
interval | No | Time interval for the data. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for monthly/quarterly/annual commodity data.",
"properties": {
"datatype": {
"description": "Response data format.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"interval": {
"description": "Time interval for the data.",
"enum": [
"monthly",
"quarterly",
"annual"
],
"type": "string"
}
},
"type": "object"
}