Skip to main content
GET
/
payout
/
configuration
cURL
curl --request GET \
  --url https://sandbox.dollarpe.xyz/pos/api/v1/payout/configuration \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-SIGNATURE: <api-key>' \
  --header 'X-TIMESTAMP: <api-key>'
{
  "status": true,
  "message": "Success",
  "data": {
    "inr": {
      "supported_assets": [
        "usdt",
        "usdc"
      ],
      "coin_limits": {
        "usdt": {
          "imps": {
            "min": 28,
            "max": 5563
          },
          "upi": {
            "min": 28,
            "max": 1113
          }
        },
        "usdc": {
          "imps": {
            "min": 28,
            "max": 5563
          },
          "upi": {
            "min": 28,
            "max": 1113
          }
        }
      },
      "required_risk_parameters": [
        "ip_address",
        "device_id",
        "suspicious_activity_report",
        "law_enforcement_agency_report"
      ]
    }
  }
}
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

Response

Successful response

status
boolean
Example:

true

message
string
Example:

"Success"

data
object