I found at Twitter that is possible to search for arXiv articles with Mathematica, e.g. the following code:
arXiv = ServiceConnect["ArXiv"];
articles = arXiv["Search", {"Query" -> "Mathematica"}];
articles[All, {"URL", "Title"}]
gives as result:
My question is:
How can I specify the time range in between the articles were published?
Is it possible to combine search keywords with binary operators (AND, OR, etc.)?
UPDATE:
To my second question:
articles =
arXiv["Search", {"Query" -> {"Title" -> {"Mathematica" | "Solving"}}}];
searches for all articles containing "Mathematica" OR "Solving" in "Title"
articles =
arXiv["Search", {"Query" -> {"Title" -> {"Mathematica", "Solving"}}}];
searches for all articles containing "Mathematica" AND "Solving" in "Title"

, MaxItems -> 250or some such. – user21 Dec 03 '16 at 19:34