Your API key
YOUR_API_KEYRun this now
curl -X POST https://gateplex.ai/api/public/intercepts \
-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
}'Showing a placeholder key. Sign in to insert your real key automatically.
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://gateplex.ai/api/public/intercepts \
-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
}'