> For the complete documentation index, see [llms.txt](https://developer.myidentitypass.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.myidentitypass.com/products/data-verification/ghana/international-passport.md).

# International Passport

{% hint style="info" %}
TEST DATA\
number: G0000575

{% endhint %}

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/gh/passport`

Verify an international passport

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | Your secret key |
| app-id<mark style="color:red;">\*</mark>    | String | your app id     |

#### Request Body

| Name                                     | Type   | Description     |
| ---------------------------------------- | ------ | --------------- |
| number<mark style="color:red;">\*</mark> | String | passport number |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{ 

    "status": true, 
    "response_code": "00", 
    "message": "Passport Information retrieved", 
    "data": { 
        "PassportNo": "", 
        "FirstName": " ", 
        "LastName": "", 
        "MiddleName": "", 
        "Nationality": "", 
        "DateOfBirth": "", 
        "Gender": "", 
        "PlaceOfBirth": "", 
        "PlaceOfIssue": "", 
        "IssueDate": "", 
        "ExpiryDate": "", 
        "Picture":"Base64Image",
        "Signature": "Base64Image"
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
