Colombia Public API
Colombia Public API — API-Colombia is a public RESTful API that provides acce…
Colombia Public API exposes aPI-Colombia is a public RESTful API that provides access to a wide range of data about Colombia, including information on departments, regions, and tourist attractions. Users can explore public information without the need for authentication, making it easy to discover diverse aspects of the country. We verified a keyless GET endpoint returning JSON (Geocoding). Check the provider docs for rate limits and terms before production use.
GET https://api-colombia.com/api/v1/Country/Colombia
{
"id": 1,
"name": "Colombia",
"description": "Colombia, oficialmente República de Colombia, es un país de América del Sur con regiones insulares en América del Norte, cerca de la costa caribeña de Nicaragua, así como en el Océano Pacífico. El territorio continental de Colombia limita al norte con el Mar Caribe, al este y noreste con Venezuela, al sureste con Brasil, al sur y suroeste con Ecuador y Perú, al oeste con el Océano Pacífico y al noroeste con Panamá. Colombia está dividida en 32 departamentos y el Distrito Capital de Bogotá, la ciudad más grande del país. Cubre un área de 1.141.748 kilómetros cuadrados (440.831 millas cuadradas) y tiene una población de 52 millones. El patrimonio cultural de Colombia, que incluye lengua, religión, cocina y arte, refleja su historia como colonia española, fusionando elementos culturales traídos por la inmigración de Europa y Medio Oriente, con los traídos por africanos esclavizados, así como con los de los diversos Civilizaciones indígenas anteriores a la colonización. El español es el idioma oficial del estado, aunque el inglés y otros 64 idiomas son idiomas regionales reconocidos.",
"stateCapital": "Bogotá",
"surface": 1141748,
"population": 52235050,
"languages": [
"Spanish",
"English"
],
"timeZone": "UTC-5"
}curl "https://api-colombia.com/api/v1/Country/Colombia"const res = await fetch("https://api-colombia.com/api/v1/Country/Colombia");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api-colombia.com/api/v1/Country/Colombia")
print(res.json())/api/v1/Country/ColombiaPROBEDColombia Public API — API-Colombia is a public RESTful API that provides acce…
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/v1/DepartmentDepartment — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Colombia Public API: common questions
Is Colombia Public API free to use?
Yes — Colombia Public API is a free geo & maps API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Colombia Public API need an API key?
No — Colombia Public API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Colombia Public API from the browser?
Yes — Colombia Public API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Colombia Public API up right now?
As of our last scheduled check, Colombia Public API is healthy with 100% uptime over 90 days and a 840 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.