POST
/
api
/
v1
/
transactions
/
symbolinfo
curl --request POST \
  --url https://integration-api.meshconnect.com/api/v1/transactions/symbolinfo \
  --header 'Content-Type: application/json' \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>' \
  --data '{
  "side": "buy",
  "symbol": "BTC",
  "amount": 0,
  "price": 0,
  "isCryptocurrency": false,
  "paymentIsCryptocurrency": false,
  "amountIsFiat": false,
  "amountIsInPaymentSymbol": false,
  "extendedHours": false,
  "orderType": "market",
  "timeInForce": "goodTillCanceled",
  "type": "robinhood"
}'
{
  "content": {
    "fractionalTradingAllowance": "fractionalTradingAllowed",
    "minimumOrderValue": 0.001,
    "precisionScale": 6
  },
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Body

application/json

Response

200
application/json
Information for symbol obtained.

The response is of type object.