RESTful API which provides information on official divisional administrative regions of Portugal (based on "Carta Administrativa Oficial de Portugal, 2021", from here). It includes information on mainland Portugal, Azores and Madeira. It also provides information on Postal Codes and Census. For more information see the resource and routines documentations.
You can use freely the public API at https://geoapi.pt
. The limit per IP is 900 requests per 15 minutes (average of 1/sec).
It uses NodeJS (much faster than Python) to create a HTTP server allowing several GET requests. It pre-processes all the raw data for fast real-time delivery.
All the API documentation is at docs.geoapi.pt.
This API follows the OpenAPI Specification, thus you can see all the routes in the openapi.yaml
file.
By default the server replies with text/html
format. To receive JSON format, chose one of these:
- add the query GET parameter
json=1
to the URL (ex.:/municipio/évora?json=1
); - set the HTTP request header
Accept
as JSON, that is,Accept: application/json
; or - in case you're using the public API, use the host
json.geoapi.pt
(ex:json.geoapi.pt/cp/2495-300
)
For pretty-printing JSON as HTML response, use in the query ?json=belo
, for example /cp/2495-300?json=belo
Just run
docker run -p 8080:8080 jfoclpf/geoapi.pt:latest
or to run as a service in the background
docker run -p 8080:8080 -d jfoclpf/geoapi.pt:latest
Tested on Linux, Windows and MacOS
- Install NodeJS and git
- Clone the project (just the latest version):
git clone --depth=1 https://github.com/jfoclpf/geoapi.pt.git
- Enter the newly created directory and install dependencies
cd geoapi.pt; npm ci
- Start the server
npm start -- --buildFeAssets --port=8080
For more information run npm start -- --help
For permanent and continuous operation (production) use for example pm2 or forever.
npm install pm2@latest -g
pm2 start src/server/index.js -- --buildFeAssets --port 8080
DEBUG=geoapipt:* npm start -- --port=8080