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