Trading API
API V1
We are providing a trading API that aggregates access to our decentralized protocol for developers.
The main instance of the trading API gateway is located at:
https://tradingapi.prvx.io/api#/
From the Trading API, you'll be able to:
Manage your account permission (delegate accesses to other services, or your own bots)
Open and manage your positions
Get access to real time market data
See your portfolio
Response Format
{
success: boolean;
statusMessage: string;
data: T;
error?: {
code: string;
message: string;
};
};Last updated