---
title: "Get a verification result"
method: GET
path: "/v1/verifications/{uuid}"
tags: ["OpenID4VP Verification"]
---

# Get a verification result

`GET /v1/verifications/{uuid}`

Fetch one verification result for your tenant. You can look up the result by the UUID in the path.

## Path parameters

- `uuid` string, uuid, required

## Response `200`

Returns the verification result.

- object
  - `id` string, uuid — Identifies the verification result.
  - `request_id` string, uuid — Identifies the presentation request that produced this result.
  - `verdict` 'verified' — Shows whether verification succeeded.
  - `vct` string — Names the VCT (Verifiable Credential Type) that was verified.
  - `verifier` string — Identifies the verifier audience for the presentation.
  - `requested_claims` string[] — Lists the claim names requested for disclosure.
  - `disclosed_claims` object — Contains the claims the holder disclosed.
    - `tier` string — Shows the disclosed `tier` claim value.
  - `checks` object — Reports the verification checks recorded for this result.
    - `alg_allowlist` boolean — Shows whether the signing algorithms passed the allowlist check.
    - `aud` boolean — Shows whether the audience check passed.
    - `key_binding` boolean — Shows whether the KB-JWT (Key-Binding JWT) holder binding check passed.
    - `nonce` boolean — Shows whether the nonce check passed.
    - `not_expired` boolean — Shows whether the credential was still valid at verification time.
    - `not_revoked` boolean — Shows whether the credential passed the revocation check.
    - `signature` boolean — Shows whether the credential signature check passed.
  - `error` string — Returns an empty string on success or a failure reason when verification fails.
  - `created_at` string, date-time — Records when the verification result was created.

---

[API](https://skmtc.net/didit-protocol/apis/didit-credentials-api.md) · [All operations](https://skmtc.net/didit-protocol/apis/didit-credentials-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/didit-protocol/didit-credentials-api/revisions/e4eddba66557/schema)
