API/Docs/Quickstart

Getting Started

Get your first API response in under 2 minutes. No setup required.

ℹ️
Free tier rate limits
100 requests/minute · 1,000 requests/day · Quote and Health endpoints only. Upgrade to Pro for signals, history, and scanner.
1

Create a free account

Sign up at getsigna.ai/signup. No credit card required. Your account is activated instantly.

After signup, navigate to Dashboard → API Keys to generate your first key.

2

Generate your API key

In the API Keys page, click Generate. Your key will look like:

cmts_a1b2c3d4e5f6...

⚠️ Save this key immediately — it is only shown once.

3

Make your first request

# Get a real-time quote for AAPL
curl https://getsigna.ai/api/v1/quote/AAPL \
  -H "Authorization: Bearer YOUR_API_KEY"
Response
{
  "ok": true,
  "symbol": "AAPL",
  "data": {
    "price": 178.23,
    "change": 2.45,
    "changePercent": 1.39,
    "volume": 54382910,
    "high": 179.10,
    "low": 176.80,
    "open": 177.00,
    "source": "signa",
    "timestamp": "2026-03-31T16:00:00Z"
  }
}
4

Explore the full API

The free tier gives you access to the Quote and Health endpoints. To access Action Card signals, historical data, and the multi-symbol scanner, upgrade to Pro.

Next steps

API Reference
Full endpoint documentation
Get API Key
Start building for free
Upgrade to Pro
Unlock signals & history
API Playground
Test endpoints live (login required)