Balance Sheet
curl --request GET \
--url https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet \
--header 'Authorization: Bearer <token>'import requests
url = "https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet', 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://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"data": {
"company_id": "0000320193",
"cik": "0000320193",
"statement_type": "balance_sheet",
"reporting_type": "instant",
"fiscal_year": 2025,
"fiscal_quarter": "Q3",
"period_end_date": "2025-09-27",
"currency": "USD",
"ticker": "AAPL",
"accession_number": "0000320193-25-000079",
"filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index.htm",
"metrics": {
"cash_and_cash_equivalents_at_carrying_value": 54670000000,
"assets": 331233000000,
"liabilities": 265327000000,
"stockholders_equity": 65906000000
}
}
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}Financial Statements
Balance Sheet
Retrieve an as-reported balance sheet for a US issuer by SEC CIK and period end date. Resolves across 10-Q, 10-K, and 20-F filings (including amendments), preferring the original filing that first reported the period. Balance sheets are point-in-time snapshots; reporting_type in the response is always ‘instant’.
GET
/
api
/
us
/
v0
/
financial-statements
/
balance-sheet
Balance Sheet
curl --request GET \
--url https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet \
--header 'Authorization: Bearer <token>'import requests
url = "https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet', 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://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://stockinsights-ai-us-main-f5fd25a.zuplo.app/api/us/v0/financial-statements/balance-sheet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"data": {
"company_id": "0000320193",
"cik": "0000320193",
"statement_type": "balance_sheet",
"reporting_type": "instant",
"fiscal_year": 2025,
"fiscal_quarter": "Q3",
"period_end_date": "2025-09-27",
"currency": "USD",
"ticker": "AAPL",
"accession_number": "0000320193-25-000079",
"filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index.htm",
"metrics": {
"cash_and_cash_equivalents_at_carrying_value": 54670000000,
"assets": 331233000000,
"liabilities": 265327000000,
"stockholders_equity": 65906000000
}
}
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}{
"errors": [
{
"status": "<string>",
"title": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
SEC Central Index Key for the issuer, zero-padded to 10 digits.
Pattern:
^[0-9]{10}$Example:
"0000320193"
Balance sheet 'as of' date in YYYY-MM-DD format. Must match an instant column reported in the filing's XBRL data.
Example:
"2025-09-27"
⌘I