BETA80 at checkoutEverything you need to get started with Strategy Investor — from user guides to API reference.
The Strategy Investor API provides programmatic access to market data, portfolio management, strategy analysis, and more. All plans include API access with different rate limits.
https://api.strategy-investor.comAll API requests require a Bearer token. Obtain one by authenticating with your credentials:
curl -X POST https://api.strategy-investor.com/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "your@email.com", "password": "your-password"}'
# Response:
# {
# "access_token": "eyJ...",
# "refresh_token": "eyR...",
# "token_type": "bearer",
# "expires_in": 1800,
# "user": { "id": "...", "email": "your@email.com" }
# }
# Use the token in subsequent requests:
curl https://api.strategy-investor.com/api/v1/portfolios \
-H "Authorization: Bearer eyJ..."| Plan | Rate Limit | Burst |
|---|
Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset) are included in all responses.
Official API clients and tools are coming soon. In the meantime, you can use any HTTP client (curl, Postman, httpx) to interact with the REST API.
Need help? Contact our support team or email api@strategy-investor.com.