ZipcodeJP

A RESTful API for searching Japan Address by Zipcode

日本郵便番号検索API

1. Try

2. Usage

curl -X GET "/api/find?zipcode=1080022"

3. API Documents

Success

{
  "zipCode": "1080022",
  "_province": "トウキョウト",
  "_city": "ミナトク",
  "_town": "カイガン(3チョウメ)",
  "province": "東京都",
  "city": "港区",
  "town": "海岸(3丁目)"
}

400 Bad Request

{
  "error": "Zipcode is required"
}

404 Not Found

{
  "error": "Address not found"
}