Skip to main content

1. Quick server connectivity test

Run the following curl command to verify that your machine can reach the Qodo IDE Plugin server:
curl -v https://qodo-platform.qodo.ai/health

2. Interpret the results

Success

  • Look for these indicators in the response:
    • HTTP/2 200 or HTTP/1.1 200 OK
    • A message similar to:
      {"status":"healthy"}
      
    • Connection completes without timing out

Example of successful output

* Connected to qodo-platform.qodo.ai (203.0.113.1) port 443
* SSL connection using TLSv1.3
> GET /health HTTP/2
< HTTP/2 200
{"status":"healthy"}

Understanding common issues

  1. Cannot reach the server at all
    • Example output:
      Failed to connect to qodo-platform.qodo.ai
      
    • Likely Cause: Local network or firewall blocking access.
  2. Server is reachable but responding with errors
    • Example output:
      < HTTP/2 500
      < HTTP/2 503
      
    • Likely Cause: Our server is experiencing temporary issues.

3. Windows users without curl

You can run the test using PowerShell:
Invoke-WebRequest -Uri https://qodo-platform.qodo.ai/health -Method GET
Look for a 200 status code and a {"status":"healthy"} response.

4. Next steps

If you cannot connect at all
  • Check your internet connection
  • Ensure your firewall or VPN allows traffic to qodo-platform.qodo.ai over port 443
If you receive 500 or 503 errors If the issue persists