POST
/
api
/
v1
/
transfers
/
symbol
/
details
curl --request POST \
  --url https://integration-api.meshconnect.com/api/v1/transfers/symbol/details \
  --header 'Content-Type: application/json' \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>' \
  --data '{
  "symbol": "DOGE",
  "chain": "DOGE",
  "authToken": "Secret authentication token",
  "type": "robinhood"
}'
{
  "content": {
    "symbol": "ETH",
    "addressTypes": [
      "ethAddress"
    ],
    "chains": [
      {
        "chain": "Ethereum",
        "fee": 0.00001
      }
    ]
  },
  "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

Address successfully obtained or generation initiated.

The response is of type object.