Skip to endpoints

08/2 endpoints

Account and usage API

Check the quota on your plan, how many requests are left this month, and the date the postal catalog was last refreshed.

Base URL https://api.postalkit.mx
Authentication
GET /v1/account/usage

Account Usage

Retrieve your current plan, monthly request limit, usage count, and remaining requests for the current billing period.

Request

curl
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.postalkit.mx/v1/account/usage

Response

200 Success
{
  "data": {
    "plan": "free",
    "monthly_limit": 100,
    "usage_count": 42,
    "remaining": 58,
    "period": "2026-08"
  }
}
GET /v1/account/db-version

Database Version

Retrieve when the postal catalog last changed, when it was last checked against the official source, and the current API version.

Request

curl
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.postalkit.mx/v1/account/db-version

Response

200 Success
{
  "data": {
    "last_updated": "2026-08-01T03:00:00.000000Z",
    "catalog_version": "2026-08-01",
    "last_checked_at": "2026-09-01T03:00:00.000000Z",
    "version": "1.0.0"
  }
}

last_checked_at moves on the first of every month whether or not the published catalog changed, so a last_updated that has not moved in months is a source that has not moved. Every recorded run is listed on Catalog updates.

Ready to build?

Start querying the full postal catalog in minutes.

curl -s https://api.postalkit.mx/v1/postal-codes/06600 -H "Authorization: Bearer YOUR_API_KEY"