GET
/
company
/
{symbol}
/
profile
Get comprehensive company profile
curl --request GET \
  --url https://api.fcontext.com/company/{symbol}/profile \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "symbol": "AAPL",
    "company_name": "Apple Inc.",
    "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide.",
    "industry": "Consumer Electronics",
    "sector": "Technology",
    "exchange": "NASDAQ",
    "employees": 164000,
    "website": "https://www.apple.com",
    "market_cap": 3000000000000,
    "is_active": true,
    "created_at": "2024-01-01T00:00:00Z",
    "updated_at": "2024-01-02T12:00:00Z"
  },
  "meta": {
    "symbol": "AAPL",
    "lastUpdated": "2024-01-02T12:00:00Z"
  },
  "message": "Retrieved company profile for AAPL successfully",
  "timestamp": "2024-01-02T12:00:00Z"
}

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 with comprehensive business data

Company profile response

success
boolean
required

Indicates successful API response

data
object | null
required

Company profile data Complete company profile information

timestamp
string
required

ISO 8601 timestamp of the response

pagination
object

Pagination information for paginated responses

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context