Get /v1.0/shop/rate.{_format}
			
					
						Convert amounts from a currency to another.
					
				
				Requirements
| Name | Requirement | Type | Default | Description | 
|---|---|---|---|---|
| _format | json|xml|html | string | json | |
| amount | integer | null | ||
| from | string | null | Currency in ISO 4217 | |
| to | string | null | Currency in ISO 4217 | 
Code Example
curl -X GET "https://api.tipeeestream.com/v1.0/shop/rate.json?amount=10&from=EUR&to=CAD"
Response Example (json)
{  
    "message":"success",
    "datas":{  
        "from":{  
            "currency":"EUR",
            "amount":10
        },
        "to":{  
            "currency":"CAD",
            "amount":14.92
        }
    }
}
					