Here is a guide to common API error types and their meanings:

  • 400 Bad Request 🚫
    Indicates invalid input. Example: {"error": "Invalid JSON format"}

    400_Bad_Request
  • 404 Not Found 🌍
    The requested resource does not exist. Example: {"error": "Document not found"}

    404_Not_Found
  • 500 Internal Server Error ⚠️
    A generic server error. Example: {"error": "Unexpected exception"}

    500_Internal_Server_Error

For more details on error handling, check our API Tutorial. 📚