Daily RAG research paper hub with arXiv, Gemini AI, and Notion
Fetch user-specific research papers from arXiv on a daily schedule, process and structure the data, and create or update entries in a Notion database, with support for data delivery - Paper Topic: single query keyword...
Template notes
Fetch user-specific research papers from arXiv on a daily schedule, process and structure the data, and create or update entries in a Notion database, with support for data delivery
- Paper Topic: single query keyword - Update Frequency: Daily updates, with fewer than 20 entries expected per day - Tools: - Platform: n8n, for end-to-end workflow configuration - AI Model: Gemini-2.5-Flash, for daily paper summarization and data processing - Database: Notion, with two tables — Daily Paper Summary and Paper Details - Message: Feishu (IM bot notifications), Gmail (email notifications)
1. Data Retrieval arXiv API
The arXiv provides a public API that allows users to query research papers by topic or by predefined categories.
[arXiv API User Manual](https://info.arxiv.org/help/api/user-manual.htmlarxiv-api-users-manual)
Key Notes:
1. Response Format: The API returns data as a typical Atom Response. 2. Timezone & Update Frequency: - The arXiv submission process operates on a 24-hour cycle. - Newly submitted articles become available in the API only at midnight after they have been processed. - Feeds are updated daily at midnight Eastern Standard Time (EST). - Therefore, a single request per day is sufficient. 3. Request Limits: - The maximum number of results per call (maxresults) is 30,000, - Results must be retrieved in slices of at most 2,000 at a time, using the maxresults and start query parameters. 4. Time Format: - The expected format is [YYYYMMDDTTTT+TO+YYYYMMDDTTTT], - TTTT is provided in 24-hour time to the minute, in GMT.
Scheduled Task