My Influencers
Your private influencer list for the Breakout Radar — add, rename or hide accounts without changing anyone else's radar.
/api/influencers/accountsOverview
A private per-user overlay for the Breakout Radar influencer list. GET reads your effective list; POST adds or restores a handle, PATCH renames a user-added handle, PUT replaces your private view and DELETE hides one. Shared curated accounts are never edited for anyone else. Authenticate with your signed-in website session or a dashboard-issued owner-bound API key.
Use it toPersonalize which trusted traders you see without changing the shared Raspberry radar.
Your additions/removals are isolated to your account and exposed as `scope: user` plus `preferences`. They are applied automatically when that owner's key calls the Breakout Radar: removals filter that user's social evidence and additions use a private cached X/AI overlay. The technical market scan remains shared. Legacy shared environment keys cannot access this private endpoint.
Coverage
Call it
Send your ra_live_… key in the x-api-key header. Pick your language:
curl "https://raspberrytrades.com/api/influencers/accounts" \
-H "x-api-key: ra_live_your_key_here"curl -X POST "https://raspberrytrades.com/api/influencers/accounts" \
-H "x-api-key: ra_live_your_key_here" \
-H "content-type: application/json" \
-d '{"handle":"my_trader","name":"My trader"}'# Rename a user-added account
curl -X PATCH "https://raspberrytrades.com/api/influencers/accounts" -H "x-api-key: ra_live_your_key_here" -H "content-type: application/json" -d '{"handle":"my_trader","name":"New name"}'
# Replace your complete private view
curl -X PUT "https://raspberrytrades.com/api/influencers/accounts" -H "x-api-key: ra_live_your_key_here" -H "content-type: application/json" -d '{"handles":["srxtrades","my_trader"]}'
# Hide one account only for your user
curl -X DELETE "https://raspberrytrades.com/api/influencers/accounts?handle=my_trader" -H "x-api-key: ra_live_your_key_here"Parameters
| Parameter | Type | Description |
|---|---|---|
Authentication | session | API key | Use a signed-in website session or a dashboard-issued owner-bound key (required) |
handle | string | X handle for POST/PATCH/DELETE, with or without @ |
handles | string[] | Complete private list for PUT (maximum 100) |
{
"scope": "user",
"count": 39,
"globalCount": 40,
"accounts": [
{ "handle": "srxtrades", "name": "srxtrades", "source": "curated" },
{ "handle": "my_trader", "name": "My trader", "source": "user", "addedAt": "2026-07-01T14:00:00Z" }
],
"preferences": {
"added": [
{ "handle": "my_trader", "name": "My trader", "source": "user", "addedAt": "2026-07-01T14:00:00Z" }
],
"removed": ["another_curated_trader"],
"updatedAt": "2026-07-01T14:00:00Z"
}
}Create a free account, copy your ra_live_… key and make your first call to https://raspberrytrades.com/api/influencers/accounts.
Keep your key on your server — never ship it in front-end code.