English | 简体中文 | 繁體中文 | 日本語 | 한국어 | Русский | Deutsch | Français | Español | Italiano | Português
(Aktuelle Sprachdokumente wurden durch KI übersetzt generiert, im Zweifelsfall bitte auf die Dokumente in vereinfachtem Chinesisch oder Englisch verweisen.)
LessAPI-DuckDuckGo ist ein Suchmaschinen-API-Dienst. Basierend auf playwright und der DuckDuckGo-Suchmaschine, wird nach der Verpackung ein einfacher API-Endpunkt implementiert. Einfach, leicht, zuverlässig, Docker-Deployment, einfach zu warten.
Experimentell in der Entwicklung, nicht empfohlen für die Verwendung in Produktionsumgebungen.
OpenAPI-Standarddokument (Swagger 3.0)
Anforderungsparameter:
- keyword: Suchschlüsselwort (Pflichtfeld)
- region: Region (optional) z.B. en-US, fr-FR, zh-CN, ru-RU, usw. Standardwert ist en-US
- maxCount: Maximale Rückgabeanzahl (optional) Standardwert ist 20
- viaProxyUrl: Adresse des Proxys, der vom Browser verwendet wird (optional) z.B. http://proxy.server:3000 Standardwert ist leer
Anfragebeispiel:
curl 'http://127.0.0.1:8080/search/text?keyword=hello&maxCount=2'
Antwortbeispiel:
{
"code": "success",
"data": {
"results": [
{
"order": 1,
"title": "Adele - Hello (Official Music Video) - YouTube",
"url": "https://www.youtube.com/watch?v=YQHsXMglC9A",
"description": "Listen to \"Easy On Me\" here: http://Adele.lnk.to/EOMPre-order Adele's new album \"30\" before its release on November 19: https://www.adele.comShop the \"Adele..."
},
{
"order": 2,
"title": "Hello Definition & Meaning - Merriam-Webster",
"url": "https://www.merriam-webster.com/dictionary/hello",
"description": "Learn the origin, usage, and synonyms of the word hello, an expression or gesture of greeting. See examples of hello in sentences and related words from the dictionary."
}
]
}
}