2016-07-09 20:31:21 +00:00
|
|
|
.. _adminapi:
|
|
|
|
|
2019-12-12 18:20:56 +00:00
|
|
|
==================
|
2016-07-09 20:31:21 +00:00
|
|
|
Administration API
|
2019-12-12 18:20:56 +00:00
|
|
|
==================
|
2016-07-09 20:31:21 +00:00
|
|
|
|
|
|
|
Get configuration data
|
2019-12-12 18:20:56 +00:00
|
|
|
======================
|
2016-07-09 20:31:21 +00:00
|
|
|
|
2019-12-12 18:20:56 +00:00
|
|
|
.. code:: http
|
2016-07-09 20:31:21 +00:00
|
|
|
|
2019-12-12 18:20:56 +00:00
|
|
|
GET /config HTTP/1.1
|
2016-07-09 20:31:21 +00:00
|
|
|
|
|
|
|
Sample response
|
2019-12-12 18:20:56 +00:00
|
|
|
---------------
|
|
|
|
|
|
|
|
.. code:: json
|
|
|
|
|
|
|
|
{
|
|
|
|
"autocomplete": "",
|
|
|
|
"categories": [
|
|
|
|
"map",
|
|
|
|
"it",
|
|
|
|
"images",
|
|
|
|
],
|
|
|
|
"default_locale": "",
|
|
|
|
"default_theme": "oscar",
|
|
|
|
"engines": [
|
|
|
|
{
|
|
|
|
"categories": [
|
|
|
|
"map"
|
|
|
|
],
|
|
|
|
"enabled": true,
|
|
|
|
"name": "openstreetmap",
|
|
|
|
"shortcut": "osm"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"categories": [
|
|
|
|
"it"
|
|
|
|
],
|
|
|
|
"enabled": true,
|
|
|
|
"name": "arch linux wiki",
|
|
|
|
"shortcut": "al"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"categories": [
|
|
|
|
"images"
|
|
|
|
],
|
|
|
|
"enabled": true,
|
|
|
|
"name": "google images",
|
|
|
|
"shortcut": "goi"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"categories": [
|
|
|
|
"it"
|
|
|
|
],
|
|
|
|
"enabled": false,
|
|
|
|
"name": "bitbucket",
|
|
|
|
"shortcut": "bb"
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"instance_name": "searx",
|
|
|
|
"locales": {
|
|
|
|
"de": "Deutsch (German)",
|
|
|
|
"en": "English",
|
|
|
|
"eo": "Esperanto (Esperanto)",
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"enabled": true,
|
|
|
|
"name": "HTTPS rewrite"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"enabled": false,
|
|
|
|
"name": "Vim-like hotkeys"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"safe_search": 0
|
|
|
|
}
|
2016-07-09 20:31:21 +00:00
|
|
|
|
2016-09-06 16:16:29 +00:00
|
|
|
|
|
|
|
Embed search bar
|
2019-12-12 18:20:56 +00:00
|
|
|
================
|
2016-09-06 16:16:29 +00:00
|
|
|
|
2019-12-12 18:20:56 +00:00
|
|
|
The search bar can be embedded into websites. Just paste the example into the
|
|
|
|
HTML of the site. URL of the searx instance and values are customizable.
|
2016-09-06 16:16:29 +00:00
|
|
|
|
|
|
|
.. code:: html
|
2019-12-12 18:20:56 +00:00
|
|
|
|
|
|
|
<form method="post" action="https://searx.me/">
|
|
|
|
<!-- search --> <input type="text" name="q" />
|
|
|
|
<!-- categories --> <input type="hidden" name="categories" value="general,social media" />
|
|
|
|
<!-- language --> <input type="hidden" name="lang" value="all" />
|
|
|
|
<!-- locale --> <input type="hidden" name="locale" value="en" />
|
|
|
|
<!-- date filter --> <input type="hidden" name="time_range" value="month" />
|
|
|
|
</form>
|