cURL
curl --request POST \ --url https://tilt.io/api/v1/backchannel/companies/search \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "query": "<string>", "tilt_asset_ids": [ "<string>" ], "limit": 10, "include_news": false } '
{ "companies": [ { "tilt_asset_id": "<string>", "name": "<string>", "score": 123, "ticker": "<string>", "security_type": "equity", "sparkline": [ 123 ], "news": [ { "headline": "<string>", "date": "<string>", "source": "<string>", "importance_rating": 123, "article_id": "<string>" } ] } ], "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 <= x <= 50
Search companies by name or tilt_asset_id
Show child attributes