Skip to main content
GET
/
api
/
passport
/
verify
/
{code}
Verify a passport (public)
curl --request GET \
  --url https://signsealship.com/api/passport/verify/{code}
const options = {method: 'GET'};

fetch('https://signsealship.com/api/passport/verify/{code}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://signsealship.com/api/passport/verify/{code}"

response = requests.get(url)

print(response.text)
{
  "verdict": "verified",
  "verifyCode": "<string>",
  "sealedSha256": "<string>",
  "docSha256": "<string>",
  "sealedAtUtc": "2023-11-07T05:31:56Z",
  "source": "proof_passport_api",
  "certificateAvailable": true
}

Path Parameters

code
string
required

The 26-character verify code.

Response

Verification result.

verdict
string
Example:

"verified"

verifyCode
string
sealedSha256
string
docSha256
string
sealedAtUtc
string<date-time>
source
string
Example:

"proof_passport_api"

certificateAvailable
boolean