action etmdb_news_search_read { label: "Return news or article search result" description: "Return news or article search result\n\n### Response Class (Status 200)\n\n* __{title}__: Used as a key word to search news and articles,\n\nFor more details on how news & articles are listed [see here][ref].\n[ref]: https://etmdb.com/en/news-list/-updated_date" provider: etmdb method: GET path: "/api/v1/news/search/{title}" encoding: json input: { type: "object" properties: { title: { type: "string" } } required: ["title"] additionalProperties: false } output: { type: "object" additionalProperties: true } }