Skip to main content
POST
/
data-lists
/
bulk-check
Bulk check values
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.

Overview

Runs multiple isInDataList checks in a single round trip. Each entry specifies listType and searchValue.

Endpoint

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

Authentication

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Request body

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

Response

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