Skip to main content
POST
/
data-lists
/
bulk-check
Consulta masiva de valores
curl --request POST \
  --url http://api.gu1.ai/data-lists/bulk-check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "checks": [
    {}
  ],
  "options": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt

Use this file to discover all available pages before exploring further.

Resumen

Ejecuta varias consultas isInDataList en una sola ida. Cada entrada define listType y searchValue (máximo 50).

Endpoint

POST https://api.gu1.ai/data-lists/bulk-check

Autenticación

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Cuerpo de la solicitud

checks
array
required
1–50 objects: { "listType": "<enum>", "searchValue": <any> }.
options
object
  • includeMetadata (boolean)
  • useCache (boolean, default true)

Respuesta

data.results (per-check outcomes) and data.summary (totalChecks, successfulChecks, totalMatches, hasAnyMatches, etc.).