Get the current status of polling-based enrichment.
This endpoint provides information about the current polling status, including last poll time, records processed, watermark value, and next scheduled poll.
last_poll_time: ISO timestamp of last pollrecords_processed: Number of records processed in last pollwatermark_value: Current watermark valuenext_poll_time: ISO timestamp of next scheduled poll
- Monitor polling performance
- Debug enrichment issues
- Verify watermark progression
- Check polling schedule
Security
BearerAuth
- Lantern API serverhttps://api-gateway.agenthq.withlantern.com/v1/triggers/polling/status
- Local API serverhttp://localhost:8000/v1/triggers/polling/status
curl -i -X GET \
https://api-gateway.agenthq.withlantern.com/v1/triggers/polling/status \
-H 'Authorization: Bearer <YOUR_ApiToken_HERE>'Success Response
Response
{ "last_poll_time": "string", "records_processed": 0, "watermark_value": "string", "next_poll_time": "string" }