Equity Profile

GET/gateway/v1/equity/profile

Returns a standardized stock company profile or ETF product profile, including its business description and source-update metadata.

Query Parameters

symbolstringrequired

US equity ticker symbol

Example: AAPL
Equity Profile
const options = {method: 'GET'};

fetch('https://api.asksurf.ai/gateway/v1/equity/profile?symbol=AAPL', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
OK
{
  "$schema": "https://example.com/schemas/DataObjectResponseEquityCompanyProfile.json",
  "data": {
    "cik": "<string>",
    "company_name": "<string>",
    "description": "<string>",
    "employee_count": 123,
    "exchange": "<string>",
    "industry": "<string>",
    "is_active": true,
    "listing_date": "<string>",
    "location": "<string>",
    "sec_filings_url": "<string>",
    "sector": "<string>",
    "sic_code": "<string>",
    "sic_industry": "<string>",
    "sic_sector": "<string>",
    "source_updated_at": 123,
    "symbol": "<string>",
    "website_url": "<string>"
  },
  "meta": {
    "cached": true,
    "credits_used": 123,
    "empty_reason": "<string>"
  }
}