🇨🇴SENA Certificates

Service to inquire about the courses and certificates that a citizen has completed with SENA.

SENA Certificates

GET - https://api.verifik.co/v2/co/sena/certificados

The Sena Certificates service allows developers to access certification data for individuals who have completed courses with the Servicio Nacional de Aprendizaje (SENA) in Colombia. By providing the document type and number of the individual, this service returns detailed information about their certificates. The response includes the title, type, program, certification date, and a download link for each certificate obtained by the individual.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Valid parameters: CC, TI, CE, PA, RC, PEP.

CC

documentNumber

String

True

Document number of the person to consult, without spaces or points.

123456789

NameTypeDescription

name

string

Name of the user

age

number

Age of the user

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/sena/certificados>',
  params: {documentType: 'CC', documentNumber: '123456789'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": [
    {
      "record": "9214001680795CC1023942104C",
      "title": "CURSO ESPECIAL EN",
      "type": "Certificado Aprobación",
      "program": "SOLDADURA CON PROCESO GMAW EN UNIONES 1F Y 2F",
      "certificationDate": "25 Junio, 2018",
      "certificationSignature": "27 Junio, 2018",
      "certificateDownload": "<https://certificados.sena.edu.co/guardar.asp?var1=url>"
    },
    {
      "record": "9214001680795CC1023942104E",
      "title": "CURSO ESPECIAL EN",
      "type": "Certificado de Notas",
      "program": "SOLDADURA CON PROCESO GMAW EN UNIONES 1F Y 2F",
      "certificationDate": "25 Junio, 2018",
      "certificationSignature": "27 Junio, 2018",
      "certificateDownload": "<https://certificados.sena.edu.co/guardar.asp?var1=url>"
    }
  ]
}

Last updated