action polygon_get_v1_last_currencies_from_to { label: "Last Trade for a Currency Pair" description: "Get Last Trade Tick for a Currency Pair.\n" provider: polygon method: GET path: "/v1/last/currencies/{from}/{to}" encoding: json input: { type: "object" properties: { from: { type: "string" } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }