zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Finance/FINRA
Logo FINRA

FINRA

Posisi short terkonsolidasi FINRA per saham per tanggal setelmen, dua kali sebulan.

1 endpoint1 endpoint on this scraper3 calls3 calls so farupdated 2 months agoLast updated 8/8/2026, 10:10:24 AMllms.txt
Endpoints1

1/1 passing
checked 20 hours ago · daily 01:00 WIB

Short Interest

Riwayat posisi short satu saham, atau seluruh pasar pada satu tanggal setelmen. Termasuk days-to-cover dan perubahan dari periode sebelumnya.

GET/v1/finance:finra/short-interest6h cache3 paramschecking key…
Parameters
symbolstring

Ticker symbol. Omit only when date is set.

datestring

Settlement date (YYYY-MM-DD). Settlements land mid-month and month-end.

lengthnumber

Rows to return (default 20, max 500)

·
Response
EXAMPLE
{
  "count": 8,
  "items": [
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.06,
      "changeShares": 6021464,
      "changePercent": 4.28,
      "shortInterest": 146547784,
      "settlementDate": "2026-07-15",
      "averageDailyVolume": 47952794,
      "previousShortInterest": 140526320
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 1.73,
      "changeShares": -3722156,
      "changePercent": -2.58,
      "shortInterest": 140526320,
      "settlementDate": "2026-06-30",
      "averageDailyVolume": 81121306,
      "previousShortInterest": 144248476
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.76,
      "changeShares": -11637548,
      "changePercent": -7.47,
      "shortInterest": 144248476,
      "settlementDate": "2026-06-15",
      "averageDailyVolume": 52343843,
      "previousShortInterest": 155886024
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.38,
      "changeShares": 17103306,
      "changePercent": 12.32,
      "shortInterest": 155886024,
      "settlementDate": "2026-05-29",
      "averageDailyVolume": 46064146,
      "previousShortInterest": 138782718
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.74,
      "changeShares": 4107444,
      "changePercent": 3.05,
      "shortInterest": 138782718,
      "settlementDate": "2026-05-15",
      "averageDailyVolume": 50565316,
      "previousShortInterest": 134675274
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.93,
      "changeShares": 252487,
      "changePercent": 0.19,
      "shortInterest": 134675274,
      "settlementDate": "2026-04-30",
      "averageDailyVolume": 45944025,
      "previousShortInterest": 134422787
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.39,
      "changeShares": 7651503,
      "changePercent": 6.04,
      "shortInterest": 134422787,
      "settlementDate": "2026-04-15",
      "averageDailyVolume": 39674165,
      "previousShortInterest": 126771284
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.96,
      "changeShares": 2579254,
      "changePercent": 2.08,
      "shortInterest": 126771284,
      "settlementDate": "2026-03-31",
      "averageDailyVolume": 42873045,
      "previousShortInterest": 124192030
    }
  ],
  "total": 206,
  "source": "finra",
  "symbol": "AAPL",
  "latestSettlement": "2026-07-15"
}

Code

Short Interest
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("finance:finra", "short-interest", {
  "symbol": "AAPL",
  "date": "2026-07-15",
  "length": 20
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

1 endpoint · plain text
GET
Short Interest/v1/finance:finra/short-interest
3 params

Parameters

symbolstringoptional
Ticker symbol. Omit only when date is set.
datestringoptional
Settlement date (YYYY-MM-DD). Settlements land mid-month and month-end.
lengthnumberoptional
Rows to return (default 20, max 500)

Request

curl -X GET "https://api.zapi.ink/v1/finance:finra/short-interest?symbol=AAPL&date=2026-07-15&length=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 8,
  "items": [
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.06,
      "changeShares": 6021464,
      "changePercent": 4.28,
      "shortInterest": 146547784,
      "settlementDate": "2026-07-15",
      "averageDailyVolume": 47952794,
      "previousShortInterest": 140526320
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 1.73,
      "changeShares": -3722156,
      "changePercent": -2.58,
      "shortInterest": 140526320,
      "settlementDate": "2026-06-30",
      "averageDailyVolume": 81121306,
      "previousShortInterest": 144248476
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.76,
      "changeShares": -11637548,
      "changePercent": -7.47,
      "shortInterest": 144248476,
      "settlementDate": "2026-06-15",
      "averageDailyVolume": 52343843,
      "previousShortInterest": 155886024
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.38,
      "changeShares": 17103306,
      "changePercent": 12.32,
      "shortInterest": 155886024,
      "settlementDate": "2026-05-29",
      "averageDailyVolume": 46064146,
      "previousShortInterest": 138782718
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.74,
      "changeShares": 4107444,
      "changePercent": 3.05,
      "shortInterest": 138782718,
      "settlementDate": "2026-05-15",
      "averageDailyVolume": 50565316,
      "previousShortInterest": 134675274
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.93,
      "changeShares": 252487,
      "changePercent": 0.19,
      "shortInterest": 134675274,
      "settlementDate": "2026-04-30",
      "averageDailyVolume": 45944025,
      "previousShortInterest": 134422787
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 3.39,
      "changeShares": 7651503,
      "changePercent": 6.04,
      "shortInterest": 134422787,
      "settlementDate": "2026-04-15",
      "averageDailyVolume": 39674165,
      "previousShortInterest": 126771284
    },
    {
      "name": "Apple Inc. Common Stock",
      "market": "NNM",
      "symbol": "AAPL",
      "daysToCover": 2.96,
      "changeShares": 2579254,
      "changePercent": 2.08,
      "shortInterest": 126771284,
      "settlementDate": "2026-03-31",
      "averageDailyVolume": 42873045,
      "previousShortInterest": 124192030
    }
  ],
  "total": 206,
  "source": "finra",
  "symbol": "AAPL",
  "latestSettlement": "2026-07-15"
}

Related APIs

More in finance

Pluang

financepluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

1.7M1.7M calls so far1dResponses cached for 1d
Busy: 10+ calls so far

IDX (Bursa Efek Indonesia)

financeidx

Data Bursa Efek Indonesia: ringkasan saham & indeks, top movers, broker, emiten, laporan keuangan, berita, dan passthrough ke ratusan endpoint /primary/.

756.1K756.1K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

TradingView

financetradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

341.4K341.4K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Stockbit

financestockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

115.5K115.5K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Investing

financeinvesting

Data pasar finansial lengkap — quote saham/forex/crypto/komoditas, teknikal, OHLCV historis, berita, analisis, dan kalender ekonomi.

69.6K69.6K calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Binance Futures

financebinance-futures

USD-M perpetual futures market data: funding, premium index, open interest, long/short ratios, candles and depth.

40.3K40.3K calls so far10mResponses cached for 10m
Busy: 10+ calls so far
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.