FAQ#
HTTP Status Codes and Their Meanings#
HTTP status codes are three-digit numeric codes used to represent the status of an HTTP response from a web server. Below are some common HTTP status codes and their meanings:| Status Code | Explanation |
|---|
| 400 Bad Request | The request format is incorrect or cannot be understood by the server. Typically means a client-side error. |
| 401 Unauthorized | API key authentication failed. You need to verify if your API key is correct. Other reasons include token expiration. |
| 403 Forbidden | Generally indicates insufficient permissions. |
| 404 Not Found | The requested resource was not found. You might be trying to access an endpoint that does not exist. |
| 413 Request Entity Too Large | The request body is too large. You might need to reduce the size of your request body. |
| 429 Too Many Requests | You have exceeded your rate limit due to too frequent requests. |
| 500 Internal Server Error | An internal error on the server. This might be a problem with OpenAI's servers, not your fault. |
| 503 Service Unavailable | The server is temporarily unavailable. This could be due to OpenAI performing maintenance or server overload. |
Please note that the above list is not exhaustive. Some status codes may vary depending on the server's implementation and usage.Modified at 2024-03-07 09:57:51