๐Ÿ“ฃ New Region Unlocked: You can now send payouts directly to Malawi! ๐Ÿ‡ฒ๐Ÿ‡ผ
Validate Crypto Address

Validate Address (Ramp)

This endpoint validates a blockchain address to confirm its format and existence.


Endpoint

POST {{baseURL}}/v1/ramp/address/validate

Header

HeaderValueRequired
Content-Typeapplication/jsonYes
x-api-key<API_KEY>Yes

Request Body

{
  "blockchain": "MATIC",
  "address": ""
}

Field Descriptions

FieldTypeDescription
blockchainstringBlockchain network (e.g., "MATIC")
addressstringAddress to validate

Successful Response 200 OK

{
  "message": "crypto account details fetched successfully",
  "status": "success",
  "data": {
    "valid": true
  }
}

Error Codes

CodeMessage
400Bad request โ€“ invalid or missing fields
401Unauthorized โ€“ invalid API key
500Internal server error