commodities_wtiCrudeOil
Retrieve WTI crude oil price data in daily, weekly, or monthly intervals, formatted as JSON or CSV, for informed financial analysis and decision-making.
Instructions
Retrieves West Texas Intermediate (WTI) crude oil 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 daily/weekly/monthly commodity data.",
"properties": {
"datatype": {
"description": "Response data format.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"interval": {
"description": "Time interval for the data.",
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string"
}
},
"type": "object"
}