EAP Codes by NIT
Health Promoting Entity (EAP) codes indexed by tax identification number.
Records: 1,717 | Last Updated: Jan 30, 2026
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
id | number | - |
codigo | string | - |
nombre | string | - |
habilitado | string | - |
nit | string | - |
fechaHoraActualizacion | string | date-time |
Sample Data
Section titled “Sample Data”[ { "id": 874208784, "codigo": "05001", "nombre": "DIRECCION DE SALUD DE MEDELLIN", "habilitado": "SI", "nit": "890905211", "fechaHoraActualizacion": "2026-01-30T16:59:02.83" }]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_CodigoEAPByNit.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsCodigoEAPByNit { id: number; codigo: string; nombre: string; habilitado: string; nit: string; fechaHoraActualizacion: string;}
// Use the dataconst records: RipsREFsCodigoEAPByNit[] = data;