GET v1/rates?source={source}&target={target}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
source

string

Required

target

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RateResponse
NameDescriptionTypeAdditional information
rate

decimal number

None.

fee

decimal number

None.

source

string

None.

target

string

None.

time

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "rate": 1.0,
    "fee": 2.0,
    "source": "sample string 3",
    "target": "sample string 4",
    "time": "2025-12-06T04:17:48.6099518+00:00"
  },
  {
    "rate": 1.0,
    "fee": 2.0,
    "source": "sample string 3",
    "target": "sample string 4",
    "time": "2025-12-06T04:17:48.6099518+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SendMoney.DataObjects">
  <RateResponse>
    <fee>2</fee>
    <rate>1</rate>
    <source>sample string 3</source>
    <target>sample string 4</target>
    <time>2025-12-06T04:17:48.6099518+00:00</time>
  </RateResponse>
  <RateResponse>
    <fee>2</fee>
    <rate>1</rate>
    <source>sample string 3</source>
    <target>sample string 4</target>
    <time>2025-12-06T04:17:48.6099518+00:00</time>
  </RateResponse>
</ArrayOfRateResponse>