PubMed Watchlist Monitor - Europe PMC API
Pricing
$2.50 / 1,000 successful watchlist results
PubMed Watchlist Monitor - Europe PMC API
Re-check caller-owned PubMed IDs via Europe PMC for title, publication status, citations, open-access flag and revision-date changes. Metadata only — abstracts are not billed as full text. You only pay for successful checks you receive.
Pricing
$2.50 / 1,000 successful watchlist results
Rating
0.0
(0)
Developer
Technical Dost Solutions
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Re-check the PubMed IDs on your literature or pharmacovigilance list. Get title, status, citation and open-access changes — and skip the papers that did not move.
This Actor takes a caller-owned list of PMIDs, reads Europe PMC, and writes one structured metadata row per ID. Pass the previous run's snapshot back in and you get INITIAL, UNCHANGED or CHANGED. Abstracts are not billed as full text. This is not a PubMed search dump.
What this Actor does
You already have PMIDs from a review, a trial bibliography, or a competitor paper list. You want a scheduled check for revision dates, citation counts, publication status and open-access flags — without paying a large start fee for a handful of IDs.
That is the job: a PMID watchlist, not a literature crawl.
What you get
{"schemaVersion": 1,"id": "38720000","status": "ok","pmid": "38720000","doi": "10.1038/s41586-024-00000-0","title": "Example article title from Europe PMC","authorString": "Example Author","journalTitle": "Nature","pubYear": "2024","publicationStatus": "epublish","isOpenAccess": "Y","citedByCount": 12,"dateOfRevision": "2024-05-10","firstPublicationDate": "2024-05-09","changeType": "INITIAL","changedFields": [],"checkedAt": "2026-09-06T12:00:00.000Z","sourceUrl": "https://www.ebi.ac.uk/europepmc/webservices/rest/search?query=EXT_ID:38720000%20AND%20SRC:MED&format=json&resultType=core","error": null}
PMID 38720000 is a public example identifier, not a customer or endorsement. Field values above are illustrative of shape. Missing source strings are null.
Main use cases
- Literature watchlists. Re-check a fixed PMID set after each Europe PMC update.
- Citation and OA movement. See when
citedByCountorisOpenAccesschanges. - Revision tracking.
dateOfRevisionis a compared field — useful for living reviews. - Clinops + publications. Pair PMIDs with NCT IDs in a separate Actor (below).
- n8n / MCP / backend jobs. Start the run from a server that holds
APIFY_TOKEN.
Quick start
{"pmids": ["38720000"],"maxItems": 1}
Run it, open the dataset, and save NEXT_SNAPSHOT from the default key-value store.
Repeat workflow
- Keep one PMID watchlist per customer, trial, or review (1–50 IDs).
- Start a bounded run. Schedule it yourself if you need a cadence.
- Save
NEXT_SNAPSHOTin your private workflow state. - On the next run pass it as
previousSnapshotand setonlyChanges: true. - Route
changeType: CHANGEDrows for review. Inspect error rows andSUMMARYseparately.
Input
| Field | Type | Default | What it does |
|---|---|---|---|
pmids | array | — | 1–50 numeric PubMed identifiers as strings. Duplicates checked once. |
maxItems | integer | 50 | 1–50. Must cover all unique IDs. |
onlyChanges | boolean | false | Suppress unchanged successful records without charging them. |
previousSnapshot | object | — | Prior NEXT_SNAPSHOT with kind: "pubmed". |
Pricing
| Event | Price | When it happens |
|---|---|---|
| Successful watchlist result | $0.0025 | One successful PMID check written to the dataset |
| Actor start | none | No custom start fee |
You are not charged for: failed requests, parse failures, retries, duplicate IDs, invalid input, or unchanged records suppressed by onlyChanges.
Worked example. 40 PMIDs weekly, 3 changed after the first run → about $0.0075 that week in Actor event charges.
How this compares
| Actor | Price per result | Per-run start | Job |
|---|---|---|---|
| This Actor | $0.0025 | none | Caller-owned PMID watchlist |
easyapi/pubmed-scraper (Store card, 2026-09-06) | $0.00299 | $0.09 | Search / dump oriented |
A 20-ID refresh costs $0.05 here and about $0.15 on a $0.00299 + $0.09 start card. Competitor prices change — check the live Store cards.
Using the API
curl --fail -X POST "https://api.apify.com/v2/acts/technicaldost~pubmed-europepmc-watchlist-monitor/run-sync-get-dataset-items?token=$APIFY_TOKEN" \-H 'Content-Type: application/json' \-d '{"pmids":["38720000"],"maxItems":1}'
JavaScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('technicaldost/pubmed-europepmc-watchlist-monitor').call({pmids: ['38720000'],maxItems: 1,});const { items } = await client.dataset(run.defaultDatasetId).listItems();
Python
from apify_client import ApifyClientimport osclient = ApifyClient(os.environ["APIFY_TOKEN"])run = client.actor("technicaldost/pubmed-europepmc-watchlist-monitor").call(run_input={"pmids": ["38720000"],"maxItems": 1,})for row in client.dataset(run["defaultDatasetId"]).iterate_items():print(row["pmid"], row["publicationStatus"], row["changeType"])
n8n. HTTP Request to /v2/acts/technicaldost~pubmed-europepmc-watchlist-monitor/runs with Authorization: Bearer from credentials. Poll, then read the dataset and NEXT_SNAPSHOT.
MCP / agents. Server-side tool only. Never expose the token to a public client.
Limitations
- Metadata only. Abstracts, PDFs and publisher HTML are out of scope.
- This is not a clinical conclusion, evidence grade, or systematic-review product.
- Europe PMC availability governs results. One request at a time, no automatic retries.
- At most 1,000 snapshot records are retained.
Source: public Europe PMC web service. Not affiliated with NCBI, NIH, EMBL-EBI or Europe PMC.
Related Actors
- ClinicalTrials.gov NCT Status Monitor — status and enrollment on NCT IDs you already track.
- SEC EDGAR Filing Monitor — new-only public-company filings.
Changelog
See CHANGELOG.md. Release 1.0.0 (2026-09-06): caller-owned PMID watchlists, citation/OA/revision deltas, $0.0025 per successful result, no start fee.