> For the complete documentation index, see [llms.txt](https://docs.vida.id/identity-stack/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vida.id/identity-stack/verify/document-ai/ocr-and-document-verification/ocr-and-document-verification-v1/full-details-endpoint/id-verification/passports.md).

# Passports

{% hint style="info" %}
📝 **Note: Passport IDV (Identity Verification) results do not include confidence scores.**\
Instead, the response includes:

* **Code `5000`** → Indicates the **passport was successfully tested** for the specified check.
* A **success** or **failure** message → Indicates **whether the check passed or failed**.
  {% endhint %}

### Request

<details>

<summary>Request</summary>

```json
{
    "operations": ["idVerification"],
    "payload": {
        "partnerTrxId": "{{$guid}}",
        "groupId":"{{$guid}}",
        "country": "IND",
        "idType": "PASSPORT",
        "idSubtype": "N/A",
        "idFrontSideImage":"Base64 encoded image of passport front side"
      },
      "userConsent": {
        "userIp": "226.80.211.232",
        "country": "IND",
        "obtained": true,
        "obtainedAt": "1680700959"
    }
```

</details>

### Success Response

HTTP Status Code: `200`

<details>

<summary>Success JSON Response</summary>

```json
{
    "transactionId": "0d91944d-0f76-49d3-8784-4a294443f64f",
    "partnerTrxId": "a8bcaf55-154f-4d26-ae36-6655e6df47ef",
    "groupId": "26694bb3-71ce-4735-aa6a-ad5d5e532c4e",
    "card": {
        "country": "India",
        "type": "PASSPORT",
        "isoAlpha3CountryCode": "IND",
        "isoAlpha2CountryCode": "IN"
    },
    "idVerificationResult": {
        "spoofingResult": {
            "message": "success",
            "code": 5000
        },
        "landmarkResult": {
            "message": "failed",
            "code": 5000
        },
        "forgeryResult": {
            "message": "failed",
            "code": 5000
        }
    }
}
```

</details>
