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