short_volume_history

Pack: finra · Endpoint: https://gateway.pipeworx.io/finra/mcp

FINRA Reg SHO daily short-sale volume time series for one symbol. Returns up to 30 days of records ending at end_date (default: most recent published file).

Parameters

NameTypeRequiredDescription
symbolstringyesTicker (case-insensitive)
daysnumberno1–30 (default 10)
end_datestringnoYYYY-MM-DD or YYYYMMDD; defaults to most recent published file

Example call

Arguments

{
  "symbol": "GME",
  "days": 10
}

curl

curl -X POST https://gateway.pipeworx.io/finra/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"short_volume_history","arguments":{"symbol":"GME","days":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('short_volume_history', {
  "symbol": "GME",
  "days": 10
});

More examples

{
  "symbol": "NVDA",
  "days": 30,
  "end_date": "2024-01-15"
}

Response shape

Always returns: symbol, end_date, days_returned, days_requested, series

FieldTypeDescription
symbolstringTicker symbol
end_datestringEnd date in YYYY-MM-DD format
days_returnednumberNumber of records returned
days_requestednumberNumber of days requested
seriesarrayTime series of daily short volume records
Full JSON Schema
{
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Ticker symbol"
    },
    "end_date": {
      "type": "string",
      "description": "End date in YYYY-MM-DD format"
    },
    "days_returned": {
      "type": "number",
      "description": "Number of records returned"
    },
    "days_requested": {
      "type": "number",
      "description": "Number of days requested"
    },
    "series": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "symbol": {
            "type": "string",
            "description": "Ticker symbol"
          },
          "date": {
            "type": "string",
            "description": "Date in YYYY-MM-DD format"
          },
          "combined": {
            "type": "object",
            "properties": {
              "short_volume": {
                "type": "number",
                "description": "Total short volume across both TRFs"
              },
              "short_exempt_volume": {
                "type": "number",
                "description": "Total short exempt volume"
              },
              "total_volume": {
                "type": "number",
                "description": "Total volume across both TRFs"
              },
              "short_ratio": {
                "type": "number",
                "description": "Short volume / total volume ratio"
              }
            },
            "required": [
              "short_volume",
              "short_exempt_volume",
              "total_volume",
              "short_ratio"
            ]
          },
          "by_trf": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "trf_code": {
                  "type": "string",
                  "description": "TRF code (FNSQ or FNYX)"
                },
                "trf_label": {
                  "type": "string",
                  "description": "TRF label"
                },
                "short_volume": {
                  "type": "number",
                  "description": "Short volume for this TRF"
                },
                "short_exempt_volume": {
                  "type": "number",
                  "description": "Short exempt volume for this TRF"
                },
                "total_volume": {
                  "type": "number",
                  "description": "Total volume for this TRF"
                }
              },
              "required": [
                "trf_code",
                "trf_label",
                "short_volume",
                "short_exempt_volume",
                "total_volume"
              ]
            }
          }
        },
        "required": [
          "symbol",
          "date",
          "combined",
          "by_trf"
        ]
      },
      "description": "Time series of daily short volume records"
    }
  },
  "required": [
    "symbol",
    "end_date",
    "days_returned",
    "days_requested",
    "series"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026