The applicant endpoints let you retrieve detailed information about university admission candidates — from full admitted-student records linked to biometric codes, to lightweight score lookups and CEPRE enrollment checks. Most lookup endpoints accept a national ID number (DNI) as a path parameter.Documentation 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.
GET /api/get-ingresante///
Returns the full admitted student record for a given DNI, year, and admission cycle. This endpoint joins acrosspostulante, inscripciones, resultados, programa, facultad, procesos, filial, tipo_proceso, paises, and control_biometrico to produce a comprehensive snapshot of the admitted student.
Authentication: Sanctum Bearer token required.
Path Parameters
The applicant’s national identity document number (8 digits for DNI).
The admission year (e.g.,
2024).The admission cycle number within the year (e.g.,
1 for the first cycle, 2 for the second).Example Request
Response — HTTP 200 (found)
Response — HTTP 203 (not found)
GET /api/get-ingresante-pago///
Returns a lightweight admitted student record used for payment-related lookups. This endpoint is public and requires no authentication. UnlikeGET /api/get-ingresante, it does not filter by year and cycle at query time (the parameters are accepted but currently unused in the query); it returns the first matching record for the given DNI.
Authentication: None.
Path Parameters
The applicant’s DNI.
The admission year (e.g.,
2024). Accepted as a path segment; reserved for future filtering.The admission cycle number. Accepted as a path segment; reserved for future filtering.
Example Request
Response — HTTP 200 (found)
Response — HTTP 203 (not found)
GET /api/get-postulante-pago//
Returns a base applicant record for payment verification purposes, keyed by DNI and process ID. Authentication: Sanctum Bearer token required.Path Parameters
The applicant’s DNI.
The internal admission process ID.
Example Request
Response — HTTP 200
GET /api/v1/get-postulante-inscrito/
Returns the list of admission processes that a given applicant is currently enrolled in. The response groups all enrolled processes as a JSON array underuser_info.procesos.
Authentication: Sanctum Bearer token required.
Path Parameters
The applicant’s DNI.
Example Request
Response — HTTP 200 (found)
Response — HTTP 200 (not found)
GET /api/get-puntaje/
Returns the applicant’s score records for the current admission year. Results include the programme name, admission modality, total score, vocational score, and apto/no-apto condition. Authentication: None.Path Parameters
The applicant’s DNI.
Example Request
Response Fields
Array of score records for the applicant.
Date the score was recorded.
Applicant DNI.
Applicant first names.
Applicant paternal surname.
Applicant maternal surname.
Admission modality code.
Total score.
Vocational aptitude score.
Admission condition —
SI (qualified) or NO.Name of the academic programme from the
programa table.Example Response
GET /api/v1/resultados_simulacro/
Returns the simulacro (mock exam) results for an applicant from theresultados_sim table.
Authentication: None.
Path Parameters
The applicant’s DNI.
Example Request
Response Fields
Internal record ID.
Applicant DNI.
Applicant full names.
Simulacro score.
Programme the applicant applied to.
Date of the simulacro exam.
Record creation timestamp.
Record last-updated timestamp.
Example Response
GET /api/v1/get-foto-ingresante/
Returns the admitted student’s most recent photo as a Base64-encoded string. The image is fetched from the internal document storage server and encoded inline in the response. Authentication: None.Path Parameters
The applicant’s DNI.
Example Request
Response — HTTP 200 (found)
Response Fields
true when the image was successfully retrieved.Base64 data URI of the stored photo, prefixed with the MIME type (e.g.,
data:image/jpeg;base64,...).Admission period string formed by concatenating
anio and ciclo_oti (e.g., "202401").Error responses
GET /api/verificar-ingreso//
Checks whether an applicant has been admitted (ingresante) in a given period. The period is a concatenated string ofanio + ciclo_oti (e.g., "202401"). The endpoint also accepts a codigo_ingreso in place of a DNI.
Authentication: None.
Path Parameters
Admission period string formed by concatenating year and zero-padded cycle, e.g.,
202401 for 2024 cycle 1.The applicant’s DNI or their
codigo_ingreso.Example Request
Response Fields
Always
true — indicates the query executed successfully.true if the applicant was admitted in the specified period; false otherwise.The admission code (
codigo_ingreso) when the applicant is found; null otherwise.Example Response
GET /api/biometrico/seguimiento//
Returns full biometric tracking data for an admitted applicant in a given period, including programme, modality, and contact details. Authentication: None.Path Parameters
Period string in
YYYY-C format, e.g., 2024-1.The applicant’s DNI.
Example Request
Response — HTTP 200
POST /api/v1/postulante-cepre-inscrito
Checks whether a given DNI is enrolled in CEPRE (Centro Pre-Universitario). This endpoint is public but rate-limited to 50 requests per minute. Authentication: None (throttle:50 req/min).
Request Body
The applicant’s DNI to check for CEPRE enrollment.
Example Request
Exceeding 50 requests per minute from the same IP will return HTTP
429 Too Many Requests. Implement back-off logic in integrations that may burst-query this endpoint.GET /api/v1/observados-cepre/
Returns CEPRE observation/sanction data for a given DNI. This endpoint is protected by thecepre middleware.
Authentication: cepre middleware.
Path Parameters
The applicant’s DNI.