Skip to main content
POST
/
api
/
v1
/
backchannel
/
companies
/
search
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
query
string
tilt_asset_ids
string[]
limit
integer
default:10
Required range: 1 <= x <= 50
include_news
boolean
default:false

Response

200 - application/json

Search companies by name or tilt_asset_id

companies
object[]
required
total
integer
required