Listar checklists
Lista las Check Lists guardadas en el cliente autenticado. Los resultados pertenecen a ese cliente y se ordenan por updatedAt descendente (la más reciente primero). Esta llamada no ejecuta consultas y no gasta créditos.
Usa search (o text) para filtrar por nombre. Envía page cuando quieras metadatos de paginación. Omite page para recibir el arreglo coincidente en data sin campos total / pages.
Endpoint
GET https://api.verifik.co/v2/check-lists
Devuelve las listas guardadas del cliente. Cada ítem incluye name, countries, domains, featureCodes y status. Cuando viene page, la respuesta también incluye total, limit, page y pages.
Headers
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
El token debe ser un JWT de cliente. Un token sin clientId responde 403.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page | integer | No | Si se envía, la API pagina y devuelve total, limit, page y pages. Omítelo para recibir solo el arreglo coincidente. |
perPage | integer | No | Tamaño de página. Alias de limit. Se aplica aunque no envíes page. |
limit | integer | No | Tamaño de página. Alias de perPage. |
search | string | No | Filtro de nombre, sin distinguir mayúsculas. |
text | string | No | Alias de search. |
Request
- Node.js
- PHP
- Python
- Go
const fetch = require("node-fetch");
async function run() {
const res = await fetch("https://api.verifik.co/v2/check-lists?page=1&perPage=20&search=Colombia", {
method: "GET",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(await res.json());
}
run();
<?php
$ch = curl_init("https://api.verifik.co/v2/check-lists?page=1&perPage=20&search=Colombia");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Content-Type: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import os, requests
url = "https://api.verifik.co/v2/check-lists"
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"
}
params = {"page": 1, "perPage": 20, "search": "Colombia"}
r = requests.get(url, params=params, headers=headers)
print(r.json())
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.verifik.co/v2/check-lists?page=1&perPage=20&search=Colombia", nil)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+os.Getenv("VERIFIK_TOKEN"))
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
var out map[string]interface{}
json.NewDecoder(resp.Body).Decode(&out)
fmt.Println(out)
}
Response
- 200 with page
- 200 without page
- 403
{
"data": [
{
"_id": "6aa224c87034a338385c28c0",
"client": "507f1f77bcf86cd799439013",
"name": "KYC Colombia",
"countries": ["Colombia", "Chile"],
"domains": ["people"],
"featureCodes": ["co-cedula"],
"status": "draft",
"createdAt": "2026-09-10T03:32:00.000Z",
"updatedAt": "2026-09-10T03:33:00.000Z"
}
],
"total": 1,
"limit": 20,
"page": 1,
"pages": 1
}
{
"data": [
{
"_id": "6aa224c87034a338385c28c0",
"client": "507f1f77bcf86cd799439013",
"name": "KYC Colombia",
"countries": ["Colombia", "Chile"],
"domains": ["people"],
"featureCodes": ["co-cedula"],
"status": "draft",
"createdAt": "2026-09-10T03:32:00.000Z",
"updatedAt": "2026-09-10T03:33:00.000Z"
}
]
}
{
"message": "Client context required",
"code": "Forbidden"
}
Notes
- Las listas pertenecen al cliente del JWT. No puedes leer las de otro cliente.
- El orden es siempre el
updatedAtmás reciente primero. searchytexthacen el mismo filtro de nombre, sin distinguir mayúsculas.perPageylimitson alias. Si envíaslimitsinpage, el arreglo igual se recorta.- Este endpoint no gasta créditos y no ejecuta los servicios guardados.
- Recorrido de producto: Check List. Crear: Crear una checklist.