Skip to main content
POST
/
api
/
zk-proofs
/
{id}
/
verify
Verify ZK proof
curl --request POST \
  --url https://platform.usewarp.net/api/zk-proofs/{id}/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "proof": "<string>",
  "publicSignals": [
    "<string>"
  ]
}
'
{
  "verified": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

ZK proof ID

Body

application/json
proof
string
required

The proof data

publicSignals
string[]
required

Public signals

Response

ZK proof verified successfully

verified
boolean
Example:

true