# Debuggers

Endpoints to manage debuggers and interact with them.

| Method | Path                                                                                                                                                      | Description                                                                    | Parameters | Payload      |
| :----: | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | :--------: | ------------ |
|   GET  | [/debuggers](/webside/api/debuggers/get.md)                                                                                                               | Retrieve open debuggers                                                        |      -     | -            |
|  POST  | [/debuggers](/webside/api/debuggers/post.md)                                                                                                              | Create a debugger upon an given process (evaluation)                           |      -     | `evaluation` |
|   GET  | [/debuggers/{id}/frames](/webside/api/debuggers/get-1.md)                                                                                                 | Retrieve frames of the debugger with a given ID                                |      -     | -            |
|   GET  | [/debuggers/{id}/frames/{index}](/webside/api/debuggers/get-2.md)                                                                                         | Retrieve the *i*-th frame withing the debugger with a given ID                 |      -     | -            |
|   GET  | [/debuggers/{id}/frames/{index}/bindings](/webside/api/debuggers/get-3.md)                                                                                | Retrieve the bindings of the \_i-th frame withing the debugger with a given ID |      -     | -            |
|  POST  | [/debuggers/{id}/frames/{index}/stepinto](https://github.com/guillermoamaral/Webside/blob/main/docs/api/debuggers/id/frames/index/stepinto/post.md)       | Step into the current sentence in the debugger with a given ID                 |      -     | -            |
|  POST  | [/debuggers/{id}/frames/{index}/stepover](https://github.com/guillermoamaral/Webside/blob/main/docs/api/debuggers/id/frames/index/stepover/post.md)       | Step over the current sentence in the debugger with a given ID                 |      -     | -            |
|  POST  | [/debuggers/{id}/frames/{index}/stepthrough](https://github.com/guillermoamaral/Webside/blob/main/docs/api/debuggers/id/frames/index/stepthrough/post.md) | Step through the current sentence in the debugger with a given ID              |      -     | -            |
|  POST  | [/debuggers/{id}/frames/{index}/runtocursor](https://github.com/guillermoamaral/Webside/blob/main/docs/api/debuggers/id/frames/index/runtocursor/post.md) | Run to cursor in the debugger with a given ID                                  |      -     | -            |
|  POST  | [/debuggers/{id}/frames/{index}/restart](https://github.com/guillermoamaral/Webside/blob/main/docs/api/debuggers/id/frames/index/restart/post.md)         | Restart the debugger with a given ID                                           |      -     | -            |
|  POST  | [/debuggers/{id}/resume](/webside/api/debuggers/post-1.md)                                                                                                | Resume the process of the debugger with a given ID                             |      -     | -            |
|  POST  | [/debuggers/{id}/terminate](/webside/api/debuggers/post-2.md)                                                                                             | Terminate process being debugged and close the debugger with a given ID        |      -     | -            |
| DELETE | [/debuggers/{id}](/webside/api/debuggers/delete.md)                                                                                                       | Closes the debugger with a given ID (terminating the process being debugged)   |      -     | -            |


---

# 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://webside.gitbook.io/webside/api/debuggers.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.
