My Influencers

Your private influencer list for the Breakout Radar — add, rename or hide accounts without changing anyone else's radar.

GET/api/influencers/accounts
Signals & StrategiesIncluded in every plan · one key.

Overview

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

Universe
Up to 100 X accounts per user
History
Current private list
Updates
Immediately after each CRUD request
Source
Your account preferences + X social overlay

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"
CRUD examples
POST · add an influencer
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"}'
PATCH / PUT / DELETE
# 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

ParameterTypeDescription
Authenticationsession | API keyUse a signed-in website session or a dashboard-issued owner-bound key (required)
handlestringX handle for POST/PATCH/DELETE, with or without @
handlesstring[]Complete private list for PUT (maximum 100)
Example response
200 OK · application/json
{
  "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"
  }
}
Signals & Strategies — related datasets
Get your API key

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.