action polygon_get_v1_last_quote_currencies_from_to { label: "Last Quote for a Currency Pair" description: "Get Last Quote Tick for a Currency Pair.\n" provider: polygon method: GET path: "/v1/last_quote/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 } }