Skip to main content
POST
/
v1
/
compliance
/
screen-address
Screen a blockchain address
curl --request POST \
  --url https://api.openxswitch.com/v1/compliance/screen-address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "0x1234567890123456789012345678901234567890"
}
'
{
  "data": [
    {
      "category": "Sanctioned entity category",
      "name": "Sanctioned entity name",
      "description": "Sanctioned entity description",
      "url": "https://home.treasury.gov/news/press-releases/..."
    }
  ]
}

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
address
string
required

This is the blockchain address to be screened

Example:

"0x1234567890123456789012345678901234567890"

Response

data
object[]