Coverage Endpoint

On this page, we'll dive into the coverage endpoint you can use to check postal code coverage statistics by country.


GET/v1/coverage

Get Coverage Statistics

This endpoint returns the number of postal codes available in our database for each country. This is a public endpoint that doesn't require authentication.

No parameters required

This endpoint doesn't require any query parameters.

Request

GET
/v1/coverage
curl -G https://api.zipcodestack.com/v1/coverage \
    -H "apikey: YOUR-API-KEY"

Full Response

{
    "coverage": {
        "US": 41000,
        "DE": 16000,
        "AT": 3000,
        "GB": 27000,
        "FR": 25000,
        "...": "..."
    }
}