Get Data
- POSTWeb Page Content
- POSTWeb Page Screenshot
- POSTYouTube Video Transcript
- POSTYouTube Channel Data
- POSTGet Twitter Users
- POSTGet Company Earnings Info
- POSTGet Company Financial Profile
- POSTGet Domain Information
- POSTGoogle News Data
- POSTYouTube Search Results
- POSTSearch Results
- POSTGet Recent Tweets
- POSTGet LinkedIn Profile
- POSTFind LinkedIn Profile
- POSTGet LinkedIn Activity
- POSTEnrich Company Data
- POSTGet Bluesky Posts
- POSTSearch Bluesky Posts
- POSTGet Instagram Profile
- POSTGet Instagram Followers
Advanced
Create Output
Agent Discovery
Get Data
Get Company Financial Profile
Retrieve detailed financial and company profile information for a given stock symbol, such as market cap and the last known stock price for any company.
POST
/
action
/
company_financial_profile
curl --request POST \
--url https://api-lr.agent.ai/v1/action/company_financial_profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"company": "HUBS, NKE, AAPL"
}'
{
"status": 200,
"response": [
{
"symbol": "HUBS",
"price": 726.43,
"beta": 1.715,
"volAvg": 473128,
"mktCap": 37885576433,
"lastDiv": 0,
"range": "434.84-881.13",
"changes": -21.57,
"companyName": "HubSpot, Inc.",
"currency": "USD",
"cik": "0001404655",
"isin": "US4435731009",
"cusip": "443573100",
"exchange": "New York Stock Exchange",
"exchangeShortName": "NYSE",
"industry": "Software - Application",
"website": "https://www.hubspot.com",
"description": "HubSpot, Inc. provides a cloud-based customer relationship management (CRM) platform for businesses in the Americas, Europe, and the Asia Pacific...",
"ceo": "Ms. Yamini Rangan",
"sector": "Technology",
"country": "US",
"fullTimeEmployees": "8246",
"phone": "888 482 7768",
"address": "25 First Street",
"city": "Cambridge",
"state": "MA",
"zip": "02141",
"dcfDiff": 543.32777,
"dcf": 183.1022333290244,
"image": "https://images.financialmodelingprep.com/symbol/HUBS.png",
"ipoDate": "2014-10-09",
"defaultImage": false,
"isEtf": false,
"isActivelyTrading": true,
"isAdr": false,
"isFund": false
}
]
}
Authorizations
Bearer token from your account (https://agent.ai/user/settings#credits)
Body
application/json
Response
200 - application/json
Successful retrieval of company financial profile
The response is of type object[]
.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/company_financial_profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"company": "HUBS, NKE, AAPL"
}'
{
"status": 200,
"response": [
{
"symbol": "HUBS",
"price": 726.43,
"beta": 1.715,
"volAvg": 473128,
"mktCap": 37885576433,
"lastDiv": 0,
"range": "434.84-881.13",
"changes": -21.57,
"companyName": "HubSpot, Inc.",
"currency": "USD",
"cik": "0001404655",
"isin": "US4435731009",
"cusip": "443573100",
"exchange": "New York Stock Exchange",
"exchangeShortName": "NYSE",
"industry": "Software - Application",
"website": "https://www.hubspot.com",
"description": "HubSpot, Inc. provides a cloud-based customer relationship management (CRM) platform for businesses in the Americas, Europe, and the Asia Pacific...",
"ceo": "Ms. Yamini Rangan",
"sector": "Technology",
"country": "US",
"fullTimeEmployees": "8246",
"phone": "888 482 7768",
"address": "25 First Street",
"city": "Cambridge",
"state": "MA",
"zip": "02141",
"dcfDiff": 543.32777,
"dcf": 183.1022333290244,
"image": "https://images.financialmodelingprep.com/symbol/HUBS.png",
"ipoDate": "2014-10-09",
"defaultImage": false,
"isEtf": false,
"isActivelyTrading": true,
"isAdr": false,
"isFund": false
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.