AML
Country Data
Crypto
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
Public
Asset Info
POST
/
assetInfo
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/assetInfo \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"asset": "NANO,USD,ADA",
"aclass": "currency"
}'
Copy
{
"error": [],
"result": {
"ADA": {
"aclass": "currency",
"altname": "ADA",
"decimals": 8,
"display_decimals": 6
},
"NANO": {
"aclass": "currency",
"altname": "NANO",
"decimals": 10,
"display_decimals": 5
},
"ZUSD": {
"aclass": "currency",
"altname": "USD",
"decimals": 4,
"display_decimals": 2
}
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json · object
Response
200 - application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/assetInfo \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"asset": "NANO,USD,ADA",
"aclass": "currency"
}'
Copy
{
"error": [],
"result": {
"ADA": {
"aclass": "currency",
"altname": "ADA",
"decimals": 8,
"display_decimals": 6
},
"NANO": {
"aclass": "currency",
"altname": "NANO",
"decimals": 10,
"display_decimals": 5
},
"ZUSD": {
"aclass": "currency",
"altname": "USD",
"decimals": 4,
"display_decimals": 2
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.