Quickstart
Copy and run the snippet below to log your first agent action through Gateplex. It will appear in your Live Feed within seconds.
curl -X POST https://pigpgvhwyxjgshmivsdh.supabase.co/functions/v1/intercept \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "agent_abc123",
"event_type": "llm_call",
"input": "What is the capital of France?",
"output": "Paris",
"model": "gpt-4o",
"latency_ms": 312,
"flagged": false
}'