> For the complete documentation index, see [llms.txt](https://coldbox.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coldbox.ortusbooks.com/the-basics/routing/routing-dsl/routing-methods.md).

# Terminators At a Glance

This page used to hold every route terminator in one long document. It's now split into focused pages - use this as an index:

| Terminator                                                                             | What it does                                      |
| -------------------------------------------------------------------------------------- | ------------------------------------------------- |
| [Sending Requests Somewhere](/the-basics/routing/routing-dsl/targets.md)               | `to()`, `toHandler()`, `toView()`, `toResponse()` |
| [Redirecting Routes](/the-basics/routing/routing-dsl/redirects.md)                     | `toRedirect()`, including dynamic redirects       |
| [Resourceful Routes](/the-basics/routing/routing-dsl/resourceful-routes.md)            | `resources()`, `apiResources()`                   |
| [Route Middleware](/the-basics/routing/routing-dsl/middleware.md)                      | `.middleware()`                                   |
| [Middleware Groups & Exclusions](/the-basics/routing/routing-dsl/middleware-groups.md) | `middlewareGroup()`, `.withoutMiddleware()`       |
| [Subdomain Routing](/the-basics/routing/routing-dsl/subdomain-routing.md)              | `withDomain()`                                    |
| [Routing Conditions](/the-basics/routing/routing-dsl/routing-conditions.md)            | `withCondition()`                                 |
| [Adding Data to a Route](/the-basics/routing/routing-dsl/adding-data-to-a-route.md)    | `rc()`, `prc()`, `rcAppend()`, `prcAppend()`      |
| [Streaming Routes (SSE)](/the-basics/routing/routing-dsl/sse-routes.md)                | `toSSE()`                                         |
| [AI & MCP Routing](/the-basics/routing/routing-dsl/ai-routing.md)                      | `toAi()`, `toMCP()`                               |
| [AI Gateway Routing](/the-basics/routing/routing-dsl/ai-gateway-routing.md)            | `toAiGateway()`                                   |

See the [Routing DSL overview](/the-basics/routing/routing-dsl.md) for the full method reference across initiators, modifiers, and terminators.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://coldbox.ortusbooks.com/the-basics/routing/routing-dsl/routing-methods.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
