Ping Identity
identity_verify
Verify a signature against any did:web identity. Resolves the DID Document and checks the Ed25519 signature.
Remote loomal/identity
Remote (network-hosted)
Other tools also called identity_verify?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"did": {
"type": "string",
"maxLength": 500,
"description": "DID of the signer (e.g., did:web:api.loomal.ai:identities:id-abc123)"
},
"data": {
"type": "string",
"maxLength": 2000000,
"description": "Base64-encoded original data"
},
"signature": {
"type": "string",
"maxLength": 500,
"description": "Base64-encoded signature to verify"
}
}
}