Skip to main content
GET
/
api
/
v1
/
backchannel
/
holdings
cURL
curl --request GET \
  --url https://tilt.io/api/v1/backchannel/holdings \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "user_id": 123,
    "tilt_asset_id": "<string>",
    "amount": "<string>",
    "symbol": "<string>",
    "name": "<string>",
    "isin": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

List user holdings

id
integer
required
user_id
integer
required
tilt_asset_id
string
required
amount
string
required
symbol
string | null
required
name
string | null
required
isin
string | null
required