Documentation

Concepts, conventions, and API reference. Read what you need.

Getting started

Sign up for a free account at /auth/signup. Add a position from /positions, set an exit plan, and commit one rule so SellSignal checks it every day and pings you when a target hits. Analysis is there whenever you want a second opinion; the first 3 analyses every day are free.

Concepts

Plans are multi-target ladders. Each target has a price, a weight, and a state (open, hit, or missed). When the spot drifts more than 5% from the price at generation, plans are marked stale and we recommend regenerating.

Signals combine on-chain activity, social sentiment, funding rates, and whale wallet flows into a single confidence score from 0 to 100. Each component is visible in the plan detail view.

API quickstart

Bearer-authenticated REST, Pro tier only. Generate a key in Settings.

curl -X POST https://www.sellsignal.app/api/v1/analysis \
  -H "Authorization: Bearer $SS_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "exit_plan",
    "symbol": "BTC",
    "position": { "entryPrice": 62000, "quantity": 1.0 }
  }'

See the full API reference. Rate limit: 100 requests per minute per key.

Documentation | SellSignal