Skip to content

REPS Providers

Health service providers registered in REPS, downloaded directly from the FEV-RIPS GetDatos API.

Records: 96,660

FieldTypeFormat
idnumber-
codigo_prestadorstring-
codigo_prestador_sedestring-
codigo_municipio_sedestring-
nombre_prestadorstring-
habilitadoboolean-
fecha_apertura_prestadorstringdate-time
fecha_cierre_prestadorstring/null-
tipoPrestadornumber-
tipo_documentostring-
numero_identificacion_prestadorstring-
fechaHoraActualizacionstringdate-time
[
{
"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"
}
]
// Fetch from CDN
const 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 data
const records: RipsREFsREPS[] = data;