> For the complete documentation index, see [llms.txt](https://cranford-tech.gitbook.io/freelancer-marketplace/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cranford-tech.gitbook.io/freelancer-marketplace/key-features/searching-for-services.md).

# Searching for services

Customers can search for services in a number of ways:

* The searchbar in the navbar
* The searchbar in the hero section of the index page
* By choosing a specific category from the 'Categories' section of the footer

In each case, the user is brought to the 'search' page, where the relevant search results are displayed in a repeating group. Two differnt constraints are used on the repeating group so that relevant search results are displayed:

* Any field contains
* Category

<figure><img src="/files/W0zZoOqh7PQT5EwVd9gA" alt=""><figcaption></figcaption></figure>

As can be seen from the image above, both constaints use data in the page URL to search for the correct search results. For example, if the user searches for video in the searchbar (in either the navbar or the hero section of hte index page), the user is brought to the 'search' page and a 'query' is added to the page URL:

<figure><img src="/files/qE4hzYaVAxnN6akHpgke" alt="" width="563"><figcaption></figcaption></figure>

If the user were to search for 'video', a URL parameter 'query=video' will be appended to the page URL:

<figure><img src="/files/p33sSPLwSVrxJ6BnvbHf" alt="" width="563"><figcaption></figcaption></figure>

The repeating group will search for all services where one of the fields contains the term 'video'.

Similarly, when you choose a certain category in the footer, the user is brought to the 'search' page and a category is appended to the page URL.


---

# 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://cranford-tech.gitbook.io/freelancer-marketplace/key-features/searching-for-services.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.
