action polygon_get_v1_historic_trades_symbol_date { label: "Historic Trades" description: "Get historic trades for a symbol.\n" provider: polygon method: GET path: "/v1/historic/trades/{symbol}/{date}" encoding: json input: { type: "object" properties: { date: { type: "string" } limit: { type: "string" } offset: { type: "string" } symbol: { type: "string" } } required: ["date", "symbol"] additionalProperties: false } output: { type: "object" additionalProperties: true } }