GET
/
company
/
{symbol}
/
profile
Get company profile
curl --request GET \
  --url https://api.financialcontext.com/company/{symbol}/profile \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "symbol": "AAPL",
    "company_name": "Apple Inc.",
    "short_name": "Apple",
    "description": "Apple Inc. designs, manufactures, and markets smartphones...",
    "industry": "Technology",
    "sector": "Technology",
    "exchange": "NASDAQ",
    "currency": "USD",
    "country": "United States",
    "website": "https://www.apple.com",
    "employees": 164000,
    "founded_date": "1976-04-01",
    "ipo_date": "1980-12-12",
    "company_size": "Large Cap",
    "shares_outstanding": 15728700000,
    "float_shares": 15700000000,
    "address": {
      "street": "1 Apple Park Way",
      "city": "Cupertino",
      "state": "CA",
      "postal_code": "95014",
      "country": "United States",
      "country_code": "US"
    },
    "executives": [
      {
        "name": "John Smith",
        "title": "Chief Executive Officer",
        "age": 55,
        "tenure_start": "2020-01-15",
        "total_compensation": 15000000
      }
    ],
    "financial_metrics": {
      "market_cap": 2800000000000,
      "enterprise_value": 2750000000000,
      "pe_ratio": 28.5,
      "pb_ratio": 45.2,
      "ps_ratio": 7.3,
      "dividend_yield": 0.005,
      "roe": 0.175,
      "roa": 0.125,
      "gross_margin": 0.38,
      "operating_margin": 0.25,
      "net_margin": 0.22
    },
    "is_active": true,
    "last_updated": "2023-10-18T10:30:00Z",
    "created_at": "2023-10-18T10:30:00Z",
    "updated_at": "2023-10-18T10:30:00Z"
  },
  "message": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "meta": {
    "pagination": {
      "currentPage": 1,
      "pageSize": 20,
      "totalItems": 150,
      "totalPages": 8,
      "hasMore": true,
      "hasPrevious": false
    }
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

Stock symbol (e.g., AAPL, NASDAQ:AAPL)

Required string length: 1 - 20
Example:

"AAPL"

Response

Company profile retrieved successfully

Company profile response

success
boolean
required

Indicates successful API response

data
object | null
required

Company profile data Complete company profile information

timestamp
string<date-time>
required

ISO 8601 timestamp of the response

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context