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