action nfusionsolutions_currencies_history_get { label: "Get historical prices for requested currency pairs" description: "Historical OHLC 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/Currencies/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 } } }