Parameters

No parameters.
GET/v1/currencies/{{currency_id}}
curl https://api.tradly.app/v1/currencies/{{currency_id}} \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
RESPONSE
{
  "status": true,
  "data": {
    "currency": {
      "id": 1,
      "code": "USD"
    }
  }
}