Skip to main content

Quick Diagnostic

Not sure where to start? Answer these questions to find the right solution:

Common Issues

Session Issues

Agent Behavior

API & Network

Authentication

Webhooks

Data & Formatting


Debug Checklist

Before contacting support, verify these common issues:
1

1. Verify Authentication

http GET https://api.agi.tech/v1/models \
  Authorization:"Bearer $AGI_API_KEY"
✓ API key is correct and active
✓ Bearer token format is used (Bearer {key})
2

2. Check Session State

http GET https://api.agi.tech/v1/sessions/$SESSION_ID/status \
  Authorization:"Bearer $AGI_API_KEY"
✓ Session was created successfully
✓ Session still exists (not deleted)
✓ Session status is “ready” or “running”
3

3. Test Basic Message Flow

http POST https://api.agi.tech/v1/sessions/$SESSION_ID/message \
  Authorization:"Bearer $AGI_API_KEY" \
  message="Reply with 'OK'"
✓ Try a simple “Hello” or “OK” message
✓ Verify basic message flow works
✓ Isolate the problem
4

4. Review Task Instructions

✓ Instructions are clear and specific
✓ Output format is specified
✓ Edge cases are handled

Still Need Help?

When contacting support, please include:
  • Session ID (if applicable)
  • Error messages
  • Request/response examples
  • Steps to reproduce