> For the complete documentation index, see [llms.txt](https://docs.fact-finder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fact-finder.com/integration/integrating-the-navigation-module/restricting-to-a-lower-navigation-level.md).

# Restricting to a lower navigation level

Deeper navigation, or navigation at a lower level, requires a combination of filters when you first call the FactFinder Navigation module.

### Filtering for a simple data field

When you submit a deeper navigation call, pass the full filter combination in the correct order. If you filter with data fields, you need to know which FactFinder field contains each level. Assume the categories are stored in `category0`, `category1`, and `category2`, where `category0` is the top navigation level.

For example, if navigation should go from the top-level category `Clothing` to the subcategory `Trousers` and then to `Jeans`, the REST call should look like this:

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category0:Clothing&filter=category1:Trousers&filter=category2:Jeans
```

### Filtering for a category path field

By following the schema below, you can generate all filters required for deeper navigation from the field names and the selected navigation path.

**Schema:** FILTER\_NAME:VALUE1/VALUE2/.../VALUEX.

Please note the suffix `ROOT` after the filter parameter.

In this example, the resulting filter has the name `categoryROOT/Clothing` and the value `Trousers`. Pass it in addition to the main category filter. For readability, the slashes in the example URLs are not URL-encoded.

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category:Clothing&filter=categoryROOT/Clothing:Trousers
```

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category:Clothing&filter=categoryROOT/Clothing:Trousers&filter=categoryROOT/Clothing/Trousers:Jeans
```


---

# 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://docs.fact-finder.com/integration/integrating-the-navigation-module/restricting-to-a-lower-navigation-level.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.
