Back to home

Quickstart

Send your first intercept

Copy and run the snippet below to log your first agent action through Gateplex. It will appear in your Live Feed within seconds.

Showing a placeholder API key. Sign in to insert your project's real key automatically. You can also find and rotate keys on the Projects page.
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
  }'

Next steps

  • Register your agent on the Agents page so its name shows up in logs.
  • Configure rules on the Guardrails page to block or flag risky actions automatically.
  • Read the full API reference for the complete payload schema.