Skip to main content
GET
/
v1
/
stocks
/
short-interest
Get FINRA Short Interest
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/short-interest
import requests

url = "https://data-tools.prd.arrays.org/api/v1/stocks/short-interest"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://data-tools.prd.arrays.org/api/v1/stocks/short-interest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/stocks/short-interest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://data-tools.prd.arrays.org/api/v1/stocks/short-interest"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/stocks/short-interest")
.asString();
require 'uri'
require 'net/http'

url = URI("https://data-tools.prd.arrays.org/api/v1/stocks/short-interest")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "average_daily_volume": 123,
      "change_in_short_interest": 123,
      "change_in_short_interest_percentage": 123,
      "company_name": "<string>",
      "days_to_cover": 123,
      "last_short_interest": 123,
      "settlement_date": "<string>",
      "short_interest": 123,
      "short_interest_pct_float": 123,
      "short_interest_pct_outstanding": 123,
      "symbol": "<string>",
      "updated_at": 123
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Query Parameters

symbol
string
required

Symbol (e.g. NVDA, BRK.B)

start_time
integer

Range start, unix seconds (with end_time)

end_time
integer

Range end, unix seconds (with start_time)

Response

200 - application/json

OK

data
object[]
error
object
pagination
any
request_id
string
success
boolean