API Documentation
API Documentation
Access our financial data programmatically with our easy-to-use REST API
Authentication Required
Please sign in or create an account to use the API. The basic API is free to use for everyone.
Sign InGetting Started
Our API uses standard HTTP response codes, authentication with API keys, and returns JSON responses.
Authentication
You can authenticate your API requests in two ways:
1. Using HTTP Headers
Include your API token in the request header:
2. Using Query Parameters
Alternatively, you can pass your API token as a query parameter:
Note: Using the header method is recommended for production environments as it's more secure than exposing your token in URLs.
Base URL
Rate Limits
API requests are limited based on your subscription plan. Free users get 30 requests per day, while premium users enjoy higher limits.
API Reference
Explore our comprehensive API endpoints to access financial data, news, and more.
Please sign in or create an account to use the API
The basic API is free to use for everyone. You can use it to build your own app. Please login to get your API token.
Portfolios
Retrieve the user's portfolios.
Endpoint
Code Example
Response
Returns a list of the user's portfolios.
Please sign in or create an account to use the API
The basic API is free to use for everyone. You can use it to build your own app. Please login to get your API token.
Search for Symbol
Search for a specific stock symbol.
Endpoint
Parameters
Name | Value | Type |
---|---|---|
qRequired Query string to search for a specific symbol. | query |
Code Example
Response
Returns matching symbols based on the search query.
Please sign in or create an account to use the API
The basic API is free to use for everyone. You can use it to build your own app. Please login to get your API token.
Get Data For Symbol
Retrieve data for a specific stock symbol.
Endpoint
Code Example
Response
Returns detailed data for the specified stock symbol.
Please sign in or create an account to use the API
The basic API is free to use for everyone. You can use it to build your own app. Please login to get your API token.
Get Daily Quotes For Symbol
Fetch daily quotes for a specific stock symbol over a specified date range.
Endpoint
Parameters
Name | Value | Type |
---|---|---|
from Start date for the daily quotes. Defaults to 1 year ago. | query | |
to End date for the daily quotes. Defaults to today. | query |
Code Example
Response
Returns daily quotes for the specified stock symbol within the given date range.