ToolAssay

Get aggregate bars for a stock over a given date range in custom time window siz

Get aggregate bars for a stock over a given date range in custom time window sizes. For example, if timespan = ‘minute’ and multiplier = ‘5’ then 5-minute bars will be returned. Can't find what you're looking for? POST feedback to /feedback, no charge.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
633 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://agent.massive.com/v2/aggs/ticker/:stocksTicker/range/:multiplier/:timespan/:from/:to

CategoryMarket data
Provider hostagent.massive.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days13 from 6 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 633 ms

Example input (from the provider)

{
  "method": "GET",
  "pathParams": {
    "from": "2026-08-21",
    "multiplier": "1",
    "stocksTicker": "BNC",
    "timespan": "day",
    "to": "2026-09-22"
  },
  "queryParams": {
    "adjusted": true,
    "limit": 120,
    "sort": "asc"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "pathParams": {
          "properties": {
            "from": {
              "description": "The start of the aggregate time window. Either a date with the format YYYY-MM-DD or a millisecond timestamp.",
              "type": "string"
            },
            "multiplier": {
              "description": "The size of the timespan multiplier.",
              "pattern": "^[0-9]+$",
              "type": "string"
            },
            "stocksTicker": {
              "description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
              "type": "string"
            },
            "timespan": {
              "description": "The size of the time window.",
              "enum": [
                "minute",
                "hour",
                "day",
                "week",
                "month",
                "quarter",
                "year"
              ],
              "type": "string"
            },
            "to": {
              "description": "The end of the aggregate time window. Either a date with the format YYYY-MM-DD or a millisecond timestamp.",
              "type": "string"
            }
          },
          "required": [
            "from",
            "multiplier",
            "stocksTicker",
            "timespan",
            "to"
          ],
          "type": "object"
        },
        "queryParams": {
          "properties": {
            "adjusted": {
              "description": "Whether or not the results are adjusted for splits. By default, results are adjusted. Set this to false to get results that are NOT adjusted for splits.",
              "type": "boolean"
            },
            "limit": {
              "description": "Limits the number of base aggregates queried to create the aggregate results. Max 50000 and Default 5000. Read more about how limit is used to calculate aggregate results in our article on Aggregate Data API Improvements .",
              "type": "integer"
            },
            "sort": {
              "description": "Sort the results by timestamp. `asc` will return results in ascending order (oldest at the top), `desc` will return results in descending order (newest at the top).",
              "enum": [
                "asc",
                "desc"
              ],
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON