Skip to main content
GET
/
v1
/
stocks
/
company
/
detail
Get Single Company Details
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/company/detail \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "ceo": "Jensen Huang",
      "cik": "0001045810",
      "company_description": "NVIDIA Corporation provides graphics and compute solutions.",
      "country": "United States",
      "debt_to_assets": 0.41,
      "dividend_yield": 0.02,
      "employees": 29600,
      "enterprise_value": 3380000000000,
      "eps": 2.26,
      "ev_ebitda": 52.1,
      "exchange": "NASDAQ",
      "exchange_short_name": "NASDAQ",
      "industry": "Semiconductors",
      "ipo_date": "1999-01-22",
      "is_adr": false,
      "is_etf": false,
      "is_fund": false,
      "is_listed": true,
      "logo": "https://example.com/logo.png",
      "market_cap": 3400000000000,
      "name": "NVIDIA Corporation",
      "net_income": 55760000000,
      "pb_ratio": 55.8,
      "pe_ratio": 60.5,
      "ps_ratio": 35.2,
      "revenue": 96307000000,
      "roe": 115.2,
      "sector": "Technology",
      "symbol": "NVDA",
      "website": "https://www.nvidia.com"
    }
  ],
  "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
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string

Stock symbol (uppercase, e.g., AAPL)

name
string

Company name keyword (English, case-insensitive)

Response

Successfully retrieved company details

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