action nfusionsolutions_metals_spot_annual_historical_performance_get { label: "Get Historical Annual Performance for requested metals" description: "Annual Historical Performance information" provider: nfusionsolutions method: GET path: "/api/v1/Metals/spot/performance/annual" encoding: json input: { type: "object" properties: { currency: { type: "string" } format: { type: "string" enum: ["json", "xml"] } metals: { type: "string" } unitofmeasure: { type: "string" enum: ["mg", "g", "kg", "gr", "oz", "toz", "ct", "dwt"] } years: { type: "integer" format: "int32" } } required: ["metals"] 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 } } }