HomeChatAlertsCalendarScreenerWatchlistsFiles
Docs
Sign upJoinLog inLogin

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

Overview
GETAll TickersGETCompany Data (Ticker)GETCompany Data (CIK)GETCompany Data (ISIN)GETCompany Data (CUSIP)GETCompany Data (Search)

WebSocket API

OverviewLive Quotes (Per Second)Live Quotes (Per Minute)Live NewsLive SEC FilingsTrading Halts

Company Data (CUSIP)

GET/v1/companydata/cusips/{cusip}
View as markdown

Retrieve the same company or ETF data as Company Data (Ticker), but lookup by CUSIP. Pass the 9-character CUSIP (e.g. 037833100). When multiple share classes share an identifier, returns the canonical listing.

Use cases

  • Enriching US holdings and fund accounting records keyed by CUSIP
  • Mapping CUSIP from custodian files to issuer context and ticker
  • Compliance and reference lookups when only CUSIP is known
  • Building security master records from CUSIP-based security lists

Input parameters

(*) Required

ParameterTypeDescription
cusip(*)stringCUSIP identifier, e.g. 037833100.

Output parameters

FieldTypeDescription
tickerstringTicker.
companystringCompany or fund name.
sectorstringGICS sector when available.
industrystringIndustry classification.
exchangestringPrimary listing exchange.
exchangeCodestringShort exchange code.
countrystringCountry of incorporation or domicile.
etfbooleanTrue when the ticker is an ETF.
fundbooleanTrue when the ticker is a mutual fund.
cikstringSEC Central Index Key.
isinstringInternational Securities Identification Number.
cusipstringCUSIP identifier.
websitestringIssuer website URL.
descriptionstringBusiness description or fund summary.
ceostringChief executive officer when available.
employeesstringEmployee count when available.
phonestringCompany phone number.
addressstringStreet address.
citystringCity.
statestringState or region.
zipstringPostal code.
ipostringIPO date (YYYY-MM-DD) when known.
from vantafin import RESTClient

client = RESTClient("vf-live-your_api_key")

result = client.get_company_by_cusip("037833100")

print(result)

Official SDKs (Python, JavaScript, Go, Java, Ruby): github.com/vantafin/vantafin

{
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "sector": "Technology",
  "industry": "Consumer Electronics",
  "exchange": "NASDAQ Global Select",
  "exchangeCode": "NASDAQ",
  "country": "US",
  "etf": false,
  "fund": false,
  "cik": "0000320193",
  "isin": "US0378331005",
  "cusip": "037833100",
  "website": "https://www.apple.com",
  "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide. The company offers iPhone, a line of smartphones; Mac, a line of personal computers; iPad, a l...",
  "ceo": "Timothy D. Cook",
  "employees": "164000",
  "phone": "(408) 996-1010",
  "address": "One Apple Park Way",
  "city": "Cupertino",
  "state": "CA",
  "zip": "95014",
  "ipo": "1980-12-12"
}
Company Data (ISIN)
Company Data (Search)