Last active
April 6, 2026 17:13
-
-
Save cdiaz/a48dc7cbb4fb3dbfa555e016a5aae1dd to your computer and use it in GitHub Desktop.
Consulta NIT en el Registro Único Empresarial y Social (RUES)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var request = require('request'); | |
| // Digite el NIT sin puntos ni guiones, el dígito de Verificación no es requerido. | |
| request.post( | |
| 'http://www.rues.org.co/RUES_Web/Consultas/ConsultaNIT_json', | |
| { form: {strNIT: '891190346' } }, | |
| function (error, response, result) { | |
| if (!error && response.statusCode == 200) { | |
| console.log(result) | |
| } | |
| } | |
| ); |
busca en gotrebol.com para obtener los datos de representantes legales y direcciones.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hola buenos dias! Estoy buscando algun API/webservice de la rues o de la dian que me ayude a conseguir la direccion de la empresa. No he podido dar con este detalle