RUNT — Veículo (registro básico)
Endpoint
GET https://api.verifik.co/v2/co/runt/vehiculo
Obtém dados do veículo no RUNT com placa e identificação do titular (documentType + documentNumber). Foco em cadastro e dados básicos; o relatório completo está em /v2/co/runt/vehicle-by-plate. Parâmetro opcional audit pode ser aceito como string booleana.
Cabeçalhos
| Nome | Valor |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parâmetros
| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
documentType | string | Sim | Tipo de documento do titular: CC, CE, PA, NIT. |
documentNumber | string | Sim | Número sem espaços nem pontuação. |
plate | string | Sim | Placa (validação da API: 5–9 caracteres). |
Requisição
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehiculo", {
params: {
documentType: "CC",
documentNumber: "123456789",
plate: "ABC123",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/runt/vehiculo"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789", "plate": "ABC123"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Resposta
- 200
- 404
- 409
{
"data": {
"documentNumber": "31527228",
"documentType": "CC",
"plate": "WHH662",
"vehicle": {
"marca": "MAZDA",
"linea": "T 45",
"modelo": "1999",
"noPlaca": "WHH662",
"estadoDelVehiculo": "ACTIVO",
"tipoServicio": "Público",
"organismoTransito": "STRIA DE TTOyTTE MEDELLIN"
}
},
"signature": {
"dateTime": "October 10, 2025 8:10 PM",
"message": "Certified by Verifik.co"
},
"id": "GVMFW"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber. missing plate"
}
Observações
- Histórico completo:
GET /v2/co/runt/vehicle-by-plate. - Versão simplificada:
GET /v2/co/runt/vehicle-by-plate-simplified.