Convert

Provide value converted from one currency to another

get
Query parameters
amountstringRequired

Amount (info. 1 UNIT = "1000000000000000000", decimals is 18

Example: 10000000000000000000000000
fromstringRequired

Currency Symbol of source (ex. acc, point, usd, krw, php, ...)

Example: krw
tostringRequired

Currency Symbol of target (ex. acc, point, usd, krw, php, ...)

Example: point
Responses
200Success
application/json
get
GET /v1/currency/convert?amount=10000000000000000000000000&from=krw&to=point HTTP/1.1
Host: 
Accept: */*
200Success
{
  "code": 0,
  "data": {
    "amount": "10000000000000000000000000"
  },
  "error": {
    "message": "Failed to check the validity of parameters"
  }
}