Mentioned by
Other issuers whose calls named this company.
Parameters
symbolpathrequired
Ticker symbol, case-insensitive.
Response contract
Every field in the response is part of the contract.
Response fields
The top level keys a live response actually returned, read off the API rather than written down here.
symbolmentioned_by_countcompany_namesearch_termscompanies
How this was verified
Called against 3 different subjects on the live API. Every field it returned, at every level, was compared with the contract above. Last checked August 18, 2026.
Request
curl "https://api.massari.ai/v1/earnings/AAPL/mentioned-by" \
-H "Authorization: Bearer $MASSARI_TOKEN"Example response
{
"symbol": "AAPL",
"mentioned_by_count": 30,
"company_name": "Apple Inc.",
"search_terms": [
"AAPL",
"APPLE'S"
],
"companies": [
{
"symbol": "CWD",
"mentions": [
{
"segment_id": "5cfafe8b-0f5f-41d7-bac3-1f1bbf946f75",
"segment_index": 2,
"speaker": "John Loeffler",
"speaker_role": "unknown",
"photo_url": null,
"text": "via this offering. Turning to Canyon Village, our large-scale conversion of office to multifamily in North Phoenix, serving the TSMC and Apple fab development corridor. The HUD construction loan application was approved during the quarter, …",
"match_ranges": [
{}
],
"truncated_start": true,
"truncated_end": true,
"sentiment": null,
"fiscal_quarter": "Q2 FY2026",
"call_date": "2026-08-13T00:00:00.000Z",
"transcript_id": "a0060dad-427c-4835-a333-d2c16d777134"
}
]
},
{
"symbol": "PHI",
"mentions": [
{
"segment_id": "93d86777-4b20-4ecf-9495-f5ff6600e9c2",
"segment_index": 1,
"speaker": "Menardo Jimenez",
"speaker_role": "executive",
"photo_url": null,
"text": "For businesses, the new Maya Business App brings together payments, banking, lending, cash flow management and business insights and analytics in one app for the MSMEs. Maya also enabled Apple Pay acceptance through Maya Terminals and Maya …",
"match_ranges": [
{},
{}
],
"truncated_start": true,
"truncated_end": true,
"sentiment": null,
"fiscal_quarter": "Q2 FY2026",
"call_date": "2026-08-13T00:00:00.000Z",
"transcript_id": "b584802a-6911-431a-b146-7f4b1549b817"
}
]
}
]
}A real response from the live API, captured August 18, 2026. This one is CUT: long arrays, wide objects and long strings were trimmed to keep it readable, so treat it as a sample of the shape rather than all of it. Either way it is valid JSON.