> For the complete documentation index, see [llms.txt](https://docs.verifyme.ng/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.verifyme.ng/location/get-lga-by-country.md).

# Get Lga By Country

## Get Lga By Country

<mark style="color:blue;">`GET`</mark> `https://vapi.verifyme.ng/v1/countries/:country_id/lgas`

Get all Lgas by country ID&#x20;

#### Path Parameters

| Name        | Type   | Description |
| ----------- | ------ | ----------- |
| country\_id | string | Country ID  |

#### Query Parameters

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

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

```
{
    "status": "success",
    "_pagination": {
        "limit": 2,
        "offset": 0,
        "total": 775
    },
    "data": [
        {
            "id": 1,
            "name": "Aba North",
            "code": "LGA1"
        },
        {
            "id": 2,
            "name": "Aba South",
            "code": "LGA2"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
