splits

Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp

Historical stock splits for a US-listed Polygon.io ticker: split ratio, execution date, ticker. Use to adjust historical price comparisons across split events.

Parameters

NameTypeRequiredDescription
tickerstringno
execution_datestringno
limitnumberno

Example call

Arguments

{
  "ticker": "AAPL",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/polygon-io/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"splits","arguments":{"ticker":"AAPL","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('splits', {
  "ticker": "AAPL",
  "limit": 10
});

Response shape

FieldTypeDescription
statusstringAPI response status
resultsarrayStock splits data
countnumberNumber of results
next_urlstringNext page URL if available
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "API response status"
    },
    "results": {
      "type": "array",
      "description": "Stock splits data",
      "items": {
        "type": "object",
        "properties": {
          "ticker": {
            "type": "string",
            "description": "Ticker symbol"
          },
          "execution_date": {
            "type": "string",
            "description": "Execution date"
          },
          "split_from": {
            "type": "number",
            "description": "Split from ratio"
          },
          "split_to": {
            "type": "number",
            "description": "Split to ratio"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Number of results"
    },
    "next_url": {
      "type": "string",
      "description": "Next page URL if available"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "polygon-io": {
      "url": "https://gateway.pipeworx.io/polygon-io/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026