Skip to main content
POST
/
v1
/
mix
/
validate-address
Check addresses validity
curl --request POST \
  --url https://api.openxswitch.com/v1/mix/validate-address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "<string>",
  "address": "<string>"
}
'
{
  "success": true,
  "data": {
    "address": "0x3edss.....",
    "validity": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.openxswitch.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
chain
string
required

The 'chain' name.

Refer to the Get Recharge Currencies endpoint for the list of supported chains.

address
string
required

Wallet address

Response

success
boolean
required
Example:

true

data
object
required