# Get Address Verifications

## Get Address Verifications

<mark style="color:blue;">`GET`</mark> `https://vapi.verifyme.ng/v1/verifications/addresses`

This endpoint allows you to get all address verifications.

#### Query Parameters

| Name   | Type   | Description                              |
| ------ | ------ | ---------------------------------------- |
| limit  | number | Number of verifications to fetch at once |
| offset | number | Number of verifications to skip per call |

#### Headers

| Name           | Type   | Description         |
| -------------- | ------ | ------------------- |
| Authentication | string | Authorization Token |

{% tabs %}
{% tab title="200 Successfully fetched Address verifications" %}

```
{
"status": "success",
"_pagination": {
    "limit": 0,
    "offset": 0,
    "total": 1
},
"data": [
    {
        id: 1,
        applicant: {
            firstname: "John",
            lastname: "Doe",
            phone:"08000000000",
            idType: "bvn",
            idNumber: "10000000001",
            middlename: "Cameron',
            photo: "https://images.verifyme.ng/278783775/fjjjjler7834.jpg",
            gender: "Male",
            birthdate: '17/01/1988',
        },
        createdAt: "",
        completedAt: "",
        lattitude: "9.081999",
        longitude: "8.675277",
        photos: ["https://picsum.photos/id/768/200/300.jpg", "https://picsum.photos/id/768/200/300.jpg"],
        neighbor: {
            name: "Tunde Adetunji",
            comment: "Very friendly",
            phone: "080900000000",
        },
        status: {
            status: "In Progress",
            subStatus: "In Progress",
            state: "In Progress",
        },
        city: "oshodi",
        street: "270 Murtala Muhammed Way, Alagomeji. Yaba",
        lga: "oshodi",
        state: "Lagos",
        country: "Nigeria",
        reference: "VMN_sdskdskd"
    }
]
}
```

{% endtab %}

{% tab title="500 Internal server error" %}

```
{
    "status": "error",
    "message": "string",
    "code": "INTERNAL_SERVER_ERROR"
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Curl" %}

```
curl --verbose  
    --header "Authorization: Bearer <token>" 
    --request "GET" "https://vapi.verifyme.ng/v1/verifications/addresses?limit=10&offset=0"
```

{% endtab %}
{% endtabs %}
