Getting Started
Welcome to the SnapTrade developer hub. You'll find comprehensive documentation for all our endpoints, as well as detailed guides to help you in your build.
If you need further assistance or have any questions, please send us an email at api@snaptrade.com.
If you already have API Keys, you can use our demo tool to start making requests.
API Status
Call the endpoint to make sure the API is live and that you can make the most basic request. You should receive a response indicating the API status, current server timestamp, and internal API minor version number.
Example:
Developer SDKs
Easily integrate with SnapTrade in your programming language of choice by using one of our SDKs:
Register a test user
To create a secure brokerage authorization, you first need to register a user.
Call the endpoint with a userId
which can be any string as long as it's unique to a user. Upon receiving a 200 response, the user is registered successfully and you should receive a response with a user id and a randomly generated user secret.
You can think of the user secret as a password that you will store on your users’ behalf. This, combined with your consumerKey provides additional security for your users’ data. The user id and user secret need to be passed along to all SnapTrade API endpoints that involve access to user data.
Example:
Generate a login link
To initiate a brokerage authorization for one of your users, you first create a redirect URI for that user to securely login to the SnapTrade Connection Portal and make brokerage connections.
The redirect URI can be generated by sending a POST
request to the
endpoint. userId
and
userSecret
(previously generated through calling the registerUser
endpoint)
have to be in the query parameters of the POST request.
The response includes a redirectURI to be used to login a user to the connection portal.
Example:
Connect an account through the Connection Portal
Once a user successfully logs into the connection portal, they can select their brokerage and go through the connection flow to connect their brokerage accounts.
Pull user holdings
In order to retrieve user holdings for a specific account, you can call the endpoint by passing the clientId
, timestamp
, userId
and list of account numbers (accounts
) to filter the holdings.
In the response, you should get an array of objects containing each account holdings data.
Example:
Place a limit order
To place an order through SnapTrade API, you need to go through the following two steps:
1- To receive information on how a specific order will impact an account, send a
POST
request to endpoint. The
following example is how the body of the request should look like:
Example of the response:
Example of the response for a failed request:
2- To place the order you need to send in the trade id (received through calling
the Trade Impact
endpoint) as a query parameter to the endpoint.
The successful request would indicate the status of the order (EXECUTED
,
ACCEPTED
, FAILED
, REJECTED
, PENDING
, etc.) along with other information related
to the order placed.
Example of the response:
Delete an open order
To cancel an open order, you need to POST
to the
endpoint with the account id
in the query
params and the brokerage order id
in the body of the request.