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