Once an admission process has concluded and the administrator has published results, applicants can view their scores, ranking, and admission status through theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ariellukezz/admision-web/llms.txt
Use this file to discover all available pages before exploring further.
Postulante/Resultados page (GET /postulante/mis-resultados). The PostulanteResultadoController drives this page, resolving the authenticated user’s DNI against the resultados table (backed by the Ingresante model) and returning all matching result records alongside the list of active processes, available programs, and modalities. Results are not visible until the process administrator publishes them for a given process.
Navigating the Results Page
The results page presents two tabs:Mi Rendimiento
Shows the applicant’s own results across all processes they participated in — score, rank, admission status, percentile vs. same-modality peers, and a visual bar comparing their score against the minimum, average, and maximum for their modality.
Listas de Ingresantes
Allows browsing the full published results list for any active process, grouped by year. Supports filtering by program and modality, plus search by DNI or name. DNIs of other applicants are masked to show only the first three digits.
My Results (Mi Rendimiento)
When the tab loads, it calls:| Field | Description |
|---|---|
mi_puntaje | Applicant’s final admission score |
mi_puesto | Rank within the modality |
mi_puesto_general | Overall rank across all modalities in the process |
apto | true if admitted, false if not |
percentil | Percentage of same-modality participants the applicant scored above |
promedio_modalidad | Average score for the applicant’s modality |
Public API: Score Lookup by DNI
A public endpoint is available for looking up results without authentication. This is used for score verification pages accessible to applicants who have not yet logged in:resultados table and returns the applicant’s score and admission status. The endpoint is served by BlogController@getPuntajes.
Browsing the Full Admissions List
To load the paginated list of admitted applicants for a specific process:Simulacro Result Lookup
For applicants who participated in practice exams (simulacros), results can be retrieved via the public API:ResCepreController@obtenerInformacionEstudiante, this endpoint returns the student’s simulacro performance record. It is accessible without authentication and is used by the public results page at /resultado-simulacro.
Verifying Admission (Ingreso) Status
To programmatically verify whether a given DNI is recorded as an admitted student for a specific admission period:ApixController@esIngresante. Returns a boolean confirmation of admission status for the specified period. This endpoint is used for external integrations and biometric verification workflows.
Downloading PDF Admission Certificates
Admitted applicants can generate and download official PDF admission certificates. Certificates are managed by theCertificadoController:
/certificado and renders Publico/Resultados/components/certificado. Generated certificate PDFs include the applicant’s full name, DNI, admitted program, modality, score, rank, and process year.
Downloading the Ingreso Credential
Digital admission credentials (certificado digital) can be created from the applicant’s profile section:/ver-puntaje-alcanzado and /{proceso-slug}/resultados.
Process and Year Navigation
Processes on the results page are grouped by year for easy navigation. The controller passesprocesos to the Vue page as an array grouped by anio. Only processes with estado = 1 are included in the applicant-facing view:
Results for a given admission process are only visible once the process administrator explicitly publishes them. If you participated in a process and do not yet see your results under Mi Rendimiento, it means the administrator has not yet released the results for that cycle. Check back after the official results announcement date published by the admissions office.