Skip to main content
POST
/
verify
Verify a signed envelope
curl --request POST \
  --url https://gobl.dev/v0/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": "<unknown>",
  "publickey": {
    "kty": "EC",
    "crv": "P-256",
    "alg": "ES256",
    "use": "sig",
    "kid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "x": "<string>",
    "y": "<string>",
    "d": "<string>"
  }
}
'
{
  "ok": true
}

Body

application/json
data
any
required

Signed GOBL envelope to verify.

publickey
object

ES256 public key in JWK format.

Response

Verification passed

ok
boolean
Example:

true