GET /v1/verify/:id

Retrieve a previously completed verification check by its request ID.

Request

GET /v1/verify/:request_id

Requires Authorization: Bearer vch_... header. Only checks belonging to the authenticated account are returned.

Returns 404 Not Found if the check does not exist or belongs to a different account.

Response

The response body is the same shape as the original POST /v1/verify response, plus a created_at timestamp:

FieldTypeDescription
request_idstringThe check ID.
scoreintegerTrust score (0-100).
recommendationstringapprove, review, or block.
cachedbooleanWhether the original was cached.
processed_in_msintegerOriginal processing time.
created_atstring (ISO 8601)When the check was created.

Plus all signal objects (email, company, person, ip, flags, reasoning).

Example

Request
curl https://api.vouchley.getrevlio.com/v1/verify/req_8f3a0c921b \
  -H "Authorization: Bearer $VOUCHLEY_API_KEY"