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

Advanced/optional. EVM signing-context hint; auto-resolved to the protocol hub chain when omitted. Not required for standard integrations. For non-EVM, use chain (CAIP-2) instead. For chain-specific asset claims (NFT, token, contract), set chainId inside verifier data, not here.

chain
string

CAIP-2 chain identifier for non-EVM wallets (e.g. solana:mainnet). EVM wallets do not need this field; the protocol resolves hub context automatically.

signatureMethod
string

Response

OK

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