action nfusionsolutions_metals_spot_ratio_history_get { label: "Get historical Spot Ratio prices for requested metals" description: "Historical data for the specified period and interval size \n \nThe combination of the interval parameter and start and end dates can result in results \nbeing truncated to conform to result size limits. See comments on interval parameter for details on valid interval values." provider: nfusionsolutions method: GET path: "/api/v1/Metals/spot/ratio/history" encoding: json input: { type: "object" properties: { end: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xml"] } interval: { type: "string" } pairs: { type: "string" } start: { type: "string" format: "date-time" } } required: ["pairs", "start"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { baseCurrency: { type: "string" } intervals: { type: "array" items: { type: "object" properties: { change: { type: "number" format: "double" } changePercent: { type: "number" format: "double" } end: { type: "string" format: "date-time" } high: { type: "number" format: "double" } last: { type: "number" format: "double" } low: { type: "number" format: "double" } open: { type: "number" format: "double" } start: { type: "string" format: "date-time" } } additionalProperties: false } } name: { type: "string" } symbol: { type: "string" } } additionalProperties: false } error: { type: "string" } requestedCurrency: { type: "string" } requestedSymbol: { type: "string" } requestedUnitOfMeasure: { type: "string" } success: { type: "boolean" } } additionalProperties: false } } }