Collect completed-request facts
Use your CDN, edge runtime, reverse proxy, application middleware, or log pipeline.
Developer Preview · API version 1
Send safe completed-request telemetry from your infrastructure. Readable normalizes, deduplicates, and classifies the traffic centrally—your team does not need to maintain its own agent-detection rules.
Your collection point observes a completed web request, extracts only the allowed facts, stores the event durably, and submits it to Readable in a batch. Submission happens after the visitor response and must never make your website depend on Readable availability.
Use your CDN, edge runtime, reverse proxy, application middleware, or log pipeline.
Send path-only request facts. Never send bodies, cookies, credentials, raw IP addresses, or raw query strings.
Persist stable event IDs and group one to 500 events into a batch.
Delete local work only after the response identity and every event count reconcile exactly.
Approved integrations receive a site ID, registered integration ID, exact authorized hostname, and a server-side key scoped only to traffic:write.
READABLE_INGESTION_KEY, READABLE_SITE_ID, and READABLE_INTEGRATION_ID in your server environment.curl --request POST \
https://www.tryreadable.ai/api/external-agentic/traffic/batches \
--header "Authorization: Bearer $READABLE_INGESTION_KEY" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: batch:YOUR_STABLE_BATCH_ID" \
--header "X-Readable-Ingestion-Version: 1" \
--data '{
"schema": "readable.external-agentic.traffic",
"version": 1,
"site_id": "YOUR_SITE_ID",
"batch_id": "batch:YOUR_STABLE_BATCH_ID",
"created_at": "2026-09-20T10:00:00Z",
"source": {
"type": "server_log",
"provider": "generic",
"integration_id": "YOUR_INTEGRATION_ID",
"collector": "your-collector",
"collector_version": "1.0.0"
},
"event_count": 1,
"events": [{
"event_id": "evt:YOUR_STABLE_EVENT_ID",
"occurred_at": "2026-09-20T09:59:58Z",
"request": {
"request_id": "request:YOUR_REQUEST_ID",
"method": "GET",
"scheme": "https",
"hostname": "www.example.com",
"path": "/products/example",
"user_agent": "ChatGPT-User/1.0",
"referrer_url": "https://chatgpt.com/"
},
"response": {
"status": 200,
"content_type": "text/html",
"duration_ms": 84,
"bytes_sent": 18422
},
"extensions": {}
}]
}'413, and strict acknowledgement validation.Each standalone example disables credential-bearing redirects, uses a bounded request timeout, and validates the receipt identity and accounting. They are protocol examples—not platform-specific connectors.
Access is currently reviewed by the Readable team. We will confirm the collection point, privacy boundary, expected traffic volume, hostname, sandbox plan, and operational owner before issuing credentials.
Request API access