# J-STAGE 論文検索: 日本の学術論文をキーワードで一覧化

**Use case:** 

J-STAGE 論文検索をキーワードで実行し、日本語と英語のタイトル、著者、掲載誌、DOI、巻号を一覧で取得します。研究テーマの文献調査や参考文献リスト作成に。Search Japan's national journal platform by keyword and export the papers as a clean table in one run, ready for a literature review.

## Input

```json
{
  "query": "機械学習",
  "maxResults": 15,
  "includeEnrichment": false,
  "onlyNewOrChanged": false,
  "stateName": "default",
  "resetState": false,
  "trackCitationChanges": false,
  "savedArticles": [
    {
      "sourceUrl": "https://www.jstage.jst.go.jp/article/jmi/57/3,4/57_3,4_251/_article",
      "title": "Example saved article"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "articleTitleEn": {
    "label": "Title (EN)",
    "format": "string"
  },
  "articleTitleJa": {
    "label": "Title (JA)",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "journalNameEn": {
    "label": "Journal (EN)",
    "format": "string"
  },
  "journalNameJa": {
    "label": "Journal (JA)",
    "format": "string"
  },
  "pubYear": {
    "label": "Year",
    "format": "string"
  },
  "volume": {
    "label": "Vol",
    "format": "string"
  },
  "number": {
    "label": "No",
    "format": "string"
  },
  "doi": {
    "label": "DOI",
    "format": "string"
  },
  "issn": {
    "label": "ISSN",
    "format": "string"
  },
  "citedByCount": {
    "label": "Cited By",
    "format": "number"
  },
  "referencesCount": {
    "label": "References",
    "format": "number"
  },
  "abstract": {
    "label": "Abstract",
    "format": "string"
  },
  "articleUrl": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [J-STAGE Scraper: 学術論文・引用検索 Papers & Citation Leaderboard](https://apify.com/getascraper/jstage-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/jstage-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/getascraper/jstage-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
