# Errors & Status Codes

## Errors Handling

All exceptions encountered during request processing are thoroughly captured and included in the response message, with the status set to `false`. This ensures that errors are communicated clearly and descriptively. In the rare event that an error is not handled as expected, the response message will provide details about the issue, helping you diagnose and address any problems effectively. Below is a default message in case something goes wrong internally.

> Somethiing went wrong internally, If this persist, reachout to our development team.

## Status Codes

Here is a list of our response status codes and their meanings.

| Status Code | Meaning               |
| ----------- | --------------------- |
| 200         | Successful request    |
| 201         | Successfully created  |
| 400         | Bad Request           |
| 401         | Unauthorized          |
| 404         | Content not found     |
| 422         | Request Validation    |
| 500         | Internal Server Error |
