5-Minute Quickstart
Get up and running with the Tradovate Partner API in just a few minutes. This guide walks you through making your first API call and accessing live market data.
Prerequisites
Before you begin, ensure you have:
- Partner Account Access to Dashboards (Request from an Eval Support representative if needed)
- API Credentials (API Key and Secret, created in Dashboards)
- Development Environment (Node.js, Python, or preferred language)
- HTTP Client (curl, Postman, or programming language HTTP library)
Step 1: Obtain API Credentials
Once approved, you’ll receive your API credentials. This should consist of a username and password. Once you have your credentials:
- Log on to Dashboards (staging prod).
- Navigate to Eval Functions from the side bar
- Click the API Entitlement tab at the top of the page.
- Create a new API key.
- Copy the ID and client secret when presented.
Now we have everything we need to create an /auth/accesstokenrequest payload:
Warning: Keep your API credentials secure! Never commit them to version control or expose them in client-side code.
Step 2: Authenticate
Now that we have our payload, we can get an access token from the system:
Step 3: Make Your First API Call
Now use your access token to fetch your user profile:
Congratulations! You’ve successfully:
✅ Authenticated with the Tradovate API
✅ Retrieved your user profile
As a next step, we suggest you take a look at the endpoints in the API Reference section, and begin perusing the Partner Operations portion of this guide.

