Investors Activity API
Fetch the activity of an investor during the last year.
Returns a timeline of investor activity including open positions and trades.
Authorizations
Path parameters
usernamestringRequired
Username of the investor
Responses
200
Timeline of investor activity sorted by most recent actions first
application/json
get
GET /v1/investors/{username}/activity HTTP/1.1
Host: api.bullaware.com
Accept: */*
200
Timeline of investor activity sorted by most recent actions first
{
"items": [
{
"type": "open",
"instrumentId": 1,
"instrumentName": "text",
"instrumentSymbol": "text",
"direction": "Buy",
"openPrice": 1,
"stopLoss": 1,
"investment": 1,
"leverage": 1,
"profit": 1,
"openTime": "2025-07-13T00:51:44.804Z"
}
]
}
Last updated