Non-REPS IPS
Health Service Providers (IPS) not registered in the Special Registry of Health Service Providers (REPS).
Records: 2,782 | Last Updated: Jun 27, 2026
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
id | number | - |
codigo | string | - |
nombre | string | - |
habilitado | boolean | - |
nit | string | - |
extra_III | string | - |
fechaHoraActualizacion | string | date-time |
Sample Data
Section titled “Sample Data”[ { "id": 684780953, "codigo": "910017016670", "nombre": "ESPAB COMANDO AMAZONAS", "habilitado": true, "nit": "830041314", "extra_III": "POLICIA", "fechaHoraActualizacion": "2026-06-27T06:53:56.3533333" }]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_IPSnoREPS.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsIPSnoREPS { id: number; codigo: string; nombre: string; habilitado: boolean; nit: string; extra_III: string; fechaHoraActualizacion: string;}
// Use the dataconst records: RipsREFsIPSnoREPS[] = data;