> ## Documentation Index
> Fetch the complete documentation index at: https://langchain.idochub.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Mojeek Search

The following notebook will explain how to get results using Mojeek Search. Please visit [Mojeek Website](https://www.mojeek.com/services/search/web-search-api/) to obtain an API key.

```python theme={null}
from langchain_community.tools import MojeekSearch
```

```python theme={null}
api_key = "KEY"  # obtained from Mojeek Website
```

```python theme={null}
search = MojeekSearch.config(api_key=api_key, search_kwargs={"t": 10})
```

In `search_kwargs` you can add any search parameter that you can find on [Mojeek Documentation](https://www.mojeek.com/support/api/search/request_parameters.html)

```python theme={null}
search.run("mojeek")
```
