Temporary Protection Permit (PPT)

Endpoint

https://api.verifik.co/v2/co/foreigner-id/ppt

Verify the status of a Permiso por Protección Temporal (PPT) issued by Migración Colombia. This API service allows you to confirm whether a PPT is approved and ready for delivery at a Centro Facilitador de Servicios Migratorios, ensuring the document holder can access required services. Ideal for businesses and organizations needing to validate migration status for compliance, eligibility checks, or service provision in Colombia.

Key Use Case

Perfect for organizations conducting migration status verification, such as for employment, financial services, or humanitarian aid programs, particularly for Venezuelan migrants in Colombia.Important

Notes

  • The PPT is a temporary protection permit issued by Migración Colombia, often for Venezuelan nationals. For other document types, please refer to our alternative validation services.

  • Use of this service is restricted to authorized entities. The data provided is subject to Colombian privacy laws and should be handled responsibly.

  • Always consult the physical PPT document to confirm the information retrieved via this API.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Parameters

Name
Type
Required
Description
Example

documentNumber

String

True

Document number without spaces or periods

123456789

expeditionDate

String

True

Date when the document was generated

07/03/2022

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: 'https://api.verifik.co/v2/co/foreigner-id/ppt',
  params: {expeditionDate: '07/03/2022', documentNumber: '123456789'},
    headers: {
    Accept: 'application/json',
    Authorization: 'jwt <your_verifik_token>'
  }
};

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

Response

{
    "data": {
        "arrayName": [
            "JUAN",
            "MIGUEL",
            "CAMERO",
            "MORALES"
        ],
        "documentNumber": "2081381",
        "documentType": "PPT",
        "expeditionDate": "07/03/2022",
        "expirationDate": "30/05/2031",
        "firstName": "JUAN MIGUEL",
        "fullName": "JUAN MIGUEL CAMERO MORALES",
        "lastName": "CAMERO MORALES",
        "status": "VIGENTE"
    },
    "signature": {
        "dateTime": "May 13, 2025 11:52 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "JD24J"
}

Last updated