# J-STAGE 被引用数の調べ方: 論文の引用数と抄録を一括取得

**Use case:** 

J-STAGE 被引用数を論文ごとにまとめて取得します。引用された回数、参考文献数、抄録、DOIを一度の実行で出力するので、影響力のある論文を素早く見つけられます。Find the most cited Japanese papers on any topic, with abstracts and reference counts, in a single run.

## Input

```json
{
  "query": "がん",
  "maxResults": 10,
  "dateFrom": "2010",
  "dateTo": "2016",
  "includeEnrichment": true,
  "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`).
