Municipalities
Colombian municipalities catalog with DANE codes and geographic information.
Records: 1,124 | Last Updated: Mar 11, 2025
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "05001", "nombre": "MEDELLÍN", "fechaHoraActualizacion": "2018-10-12T12:04:26.5033333", "id": 861109647, "estadoEntidad": true }]Usage Example
Section titled “Usage Example”TypeScript/JavaScript
Section titled “TypeScript/JavaScript”// Fetch from CDNconst data = await fetch('https://cdn-minsalud.pahventure.com/ref/Rips.REFs_Municipios.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsMunicipios { codigo: string; nombre: string; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsMunicipios[] = data;