1. Get USD to CNY exchange rate
1.1 Request URL
https://api.toponad.net/v1/exchange_rate/list
1.2 Request method
GET
1.3 Request params
params | type | required | notes |
---|---|---|---|
date | Int | N |
1. Must be an int type, and the range must be within the last 30 days, in the format (YMD): 20250731 2. If empty, return the exchange rate data for the last 30 days in one go.
|
conversionType | Int | N |
Enumeration values: 1: USD to CNY (Default) 2: CNY to USD
|
1.4 Sample
Request sample:
curl --location --request GET 'https://api.toponad.net/v1/exchange_rate/list?date=20250730' \
--header 'X-Up-Key: 877f8ae9c6e9ca82c0===b5fff594c373axxx' \
--header 'X-Up-Signature: CE12B506DBCD868C2C6F09E08C139CBC' \
--header 'X-Up-Timestamp: 1626056011000' \
--header 'Content-Type: application/json'
Return sample:
{
"20250730": "6.3757"
}