action polygon_get_v1_last_quote_stocks_symbol { label: "Last Quote for a Symbol" description: "Get the last quote tick for a given stock.\n" provider: polygon method: GET path: "/v1/last_quote/stocks/{symbol}" encoding: json input: { type: "object" properties: { symbol: { type: "string" } } required: ["symbol"] additionalProperties: false } output: { type: "object" additionalProperties: true } }