Overview#
I had the opportunity to create a publication list using the researchmap API, so here are my notes.
Query Examples for the researchmap API#
Here are some query examples for the researchmap API.
Retrieve a list of papers
https://api.researchmap.jp/nakamura.satoru/published_papers
Specify a limit (limit usage)
https://api.researchmap.jp/nakamura.satoru/published_papers?limit=5
Retrieve results from a specific offset (start usage)
https://api.researchmap.jp/nakamura.satoru/published_papers?limit=5&start=6
Specify publication dates (from_date and to_date)
https://api.researchmap.jp/nakamura.satoru/published_papers?from_date=2023-04-01&to_date=2024-03-31
Python Usage Example#
Based on the specified user and publication dates, export published_papers and presentations to Excel.
Usage example is as follows. CSV and Excel files are output to the data folder.
Summary#
There may be some errors, but please customize and use as needed.