REPS Providers
Health service providers registered in REPS, downloaded directly from the FEV-RIPS GetDatos API.
Records: 96,660
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
id | number | - |
codigo_prestador | string | - |
codigo_prestador_sede | string | - |
codigo_municipio_sede | string | - |
nombre_prestador | string | - |
habilitado | boolean | - |
fecha_apertura_prestador | string | date-time |
fecha_cierre_prestador | string/null | - |
tipoPrestador | number | - |
tipo_documento | string | - |
numero_identificacion_prestador | string | - |
fechaHoraActualizacion | string | date-time |
Sample Data
Section titled “Sample Data”[ { "id": 207975214, "codigo_prestador": "0500100003", "codigo_prestador_sede": "050010000301", "codigo_municipio_sede": "05001", "nombre_prestador": "BERNARDO AGUDELO JARAMILLO", "habilitado": true, "fecha_apertura_prestador": "2011-07-27T00:00:00", "fecha_cierre_prestador": null, "tipoPrestador": 2, "tipo_documento": "CC", "numero_identificacion_prestador": "71578430", "fechaHoraActualizacion": "2025-08-05T12:56:06.6066667" }]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_REPS.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsREPS { id: number; codigo_prestador: string; codigo_prestador_sede: string; codigo_municipio_sede: string; nombre_prestador: string; habilitado: boolean; fecha_apertura_prestador: string; fecha_cierre_prestador: string | null; tipoPrestador: number; tipo_documento: string; numero_identificacion_prestador: string; fechaHoraActualizacion: string;}
// Use the dataconst records: RipsREFsREPS[] = data;