Skip to main content
GET
/
payout
/
fetch-rate
cURL
curl --request GET \
  --url https://sandbox.dollarpe.xyz/pos/api/v1/payout/fetch-rate \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-SIGNATURE: <api-key>' \
  --header 'X-TIMESTAMP: <api-key>'
{
  "status": true,
  "message": "Success",
  "data": {
    "asset": "USDT",
    "fiat": "INR",
    "rate": 87.2
  }
}
API Status CodeResponseReason
500Internal Server Error.Internal Server Error

Authorizations

X-API-KEY
string
header
required

API Key for authentication

X-TIMESTAMP
string
header
required

Current timestamp in seconds since epoch

X-SIGNATURE
string
header
required

HMAC SHA256 signature of the request encoded in Base64

Path Parameters

asset
string
required

The crypto asset for which quotation is requested

Example:

"USDT"

fiat
string
required

The fiat currency in which the quotation is requested

Example:

"INR"

Response

Successful response

status
boolean
Example:

true

message
string
Example:

"Success"

data
object