Skip to main content
POST
/
api
/
v1
/
verification
/
standardize
Build the Standard Signing String
curl --request POST \
  --url https://api.neus.network/api/v1/verification/standardize \
  --header 'Content-Type: application/json' \
  --data '
{
  "walletAddress": "<string>",
  "verifierIds": [
    "ownership-basic"
  ],
  "data": {},
  "signedTimestamp": 123,
  "chainId": 123,
  "chain": "<string>",
  "signatureMethod": "<string>"
}
'
{
  "success": true,
  "data": {
    "signerString": "<string>",
    "bodyPreview": {}
  }
}

Body

application/json
walletAddress
string
required
verifierIds
enum<string>[]
required
Minimum array length: 1
Available options:
ownership-basic,
ownership-social,
ownership-pseudonym,
ownership-dns-txt,
ownership-org-oauth,
contract-ownership,
proof-of-human,
nft-ownership,
token-holding,
wallet-risk,
wallet-link,
ai-content-moderation,
agent-identity,
agent-delegation
data
required
signedTimestamp
number
required
chainId
integer

Optional. For EVM (0x address), verification requests are normalized to the protocol hub chain. For non-EVM, include chain (CAIP-2) instead.

chain
string

Optional. For EVM (0x address), verification requests are normalized to protocol hub chain context. For non-EVM, include chain (e.g. solana:mainnet).

signatureMethod
string

Response

OK

success
enum<boolean>
required
Available options:
true
data
object
required