commodities_copper
Access real-time and historical copper prices with customizable intervals (monthly, quarterly, annual) and data formats (JSON, CSV) for informed financial analysis.
Instructions
Retrieves copper 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"
}