> 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/general/get-all-verification-endpoints.md).

# Get All Verification Endpoints

<mark style="color:blue;">`GET`</mark> `{{URL}}/api/v2/biometrics/api/endpoint/get`

Retrieve all available verification and country endpoints

#### 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     |

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

```javascript
{

"status": true,

"detail": "Endpoints Retrieved",

"endpoints": [

{

"name": "Nigeria",

"description": "Nigeria",

"code": "NG",

"country_endpoint": [

{

"name": "BVN Verification 2.0",

"description": "verify users data against bvn data",

"country": {

"id": 1,

"name": "Nigeria",

"description": "Nigeria",

"code": "NG"

},

"code": "DV_BVN"

},

{

"name": "International Passport",

"description": "International Passport",

"country": {

"id": 1,

"name": "Nigeria",

"description": "Nigeria",

"code": "NG"

},

"code": "NP-NIG"

},

]

}
```

{% endtab %}
{% endtabs %}
