# Errors

Occasionally you might encounter errors when accessing the REST API. There are four possible types:

| Error Code                  | Error Type                                                 |
| --------------------------- | ---------------------------------------------------------- |
| `400 Bad Request`           | Invalid request, e.g. using an unsupported HTTP method     |
| `401 Unauthorized`          | Authentication or permission error, e.g. incorrect API-KEY |
| `404 Not Found`             | Requests to resources that don't exist or are missing      |
| `500 Internal Server Error` | Server error                                               |

> Kitegateway REST API error example:

```javascript
{
  "code": "kitegateway_rest_term_invalid",
  "status": "indicate if request was successfull",
  "message": "Resource doesn't exist.",
  "data": {
    "...": ...
  }
}
```

Errors return both an appropriate HTTP status code and response object which contains a `code`, `message`, `status` and `data` attribute.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kitegateway.com/getting-started/errors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
