A ApiPeruDev Docs

Consulta RUC Representantes

Representantes legales registrados del contribuyente.

Consideraciones

  • Lista los representantes legales del contribuyente (consulta directa a SUNAT).
  • No disponible en el plan gratuito. Consume 2 consultas de tu plan.
POST https://api.apiperu.dev/ruc-representantes Copiar

Headers

Name Type Description
Accept String application/json
Content-Type string application/json
Authorization string Bearer <token>. Genéralo desde tu panel, en Api Tokens.

Body

Name Type Description
ruc* string Número de RUC de 11 dígitos.

Ejemplo de solicitud

Copiar
curl -X POST https://api.apiperu.dev/ruc-representantes \
  -H "Accept: application/json" \
  -H "Authorization: Bearer TU_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"ruc":"20601234567"}'

Respuesta

200 OK application/json
{
  "success": true,
  "data": [
    {
      "tipo_de_documento": "DNI",
      "numero_de_documento": "44556677",
      "nombre": "PEREZ GARCIA JUAN CARLOS",
      "cargo": "GERENTE GENERAL",
      "fecha_desde": "2020-01-15"
    }
  ],
  "time": 1.0
}