Skip to main content
POST
/
market-data
/
trading-pair
/
remove
Remove Trading Pair
curl --request POST \
  --url http://localhost:8000/market-data/trading-pair/remove \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connector_name": "<string>",
  "trading_pair": "<string>",
  "account_name": "<string>"
}
'
{
  "success": true,
  "connector_name": "<string>",
  "trading_pair": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Request model for removing a trading pair from order book tracking

connector_name
string
required

Name of the connector

trading_pair
string
required

Trading pair to remove

account_name
string | null

Optional account name for trading connector preference

Response

Successful Response

Response model for trading pair management operations

success
boolean
required

Whether the operation succeeded

connector_name
string
required

Name of the connector

trading_pair
string
required

Trading pair that was added/removed

message
string
required

Status message