Trading
Preview crypto order
Previews an order using the specified account.
post/accounts/{accountId}/trading/crypto/preview
Path parameters
accountIdstring uuid required
Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
Example:917c8734-8470-4a3e-a18f-57c3f2ee6631
Query parameters
userIdstring required
SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
Example:snaptrade-user-123
userSecretstring required
SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the rotate user secret endpoint.
Example:adf2aa34-8219-40f7-a6b3-60156985cc61
Request body
Example request
{
"instrument": {
"symbol": "BTC"
},
"amount": "123.45",
"limit_price": "123.45",
"stop_price": "123.45",
"expiration_date": "2024-01-01T00:00:00Z"
}Response
OK
Example response
{
"estimated_fee": {
"currency": "BTC",
"amount": "123.45"
}
}