✓ Verified 🌐 Web Scrapers ✓ Enhanced Data

Aminer Open Academic

AMiner open academic resource query tool and academic data acquisition tool.

Rating
4.1 (473 reviews)
Downloads
983 downloads
Version
1.0.0

Overview

AMiner open academic resource query tool and academic data acquisition tool.

Complete Documentation

View Source →

AMiner Open Platform Academic Data Query

AMiner is a globally leading academic data platform that provides comprehensive academic data covering scholars, papers, institutions, journals, patents, and more. This skill covers all 28 open APIs and organizes them into 6 practical workflows. Before use, please generate a token in the console and set it as the environment variable AMINER_API_KEY for automatic script access.

  • API Documentation: https://open.aminer.cn/open/docs
  • Console (Generate Token): https://open.aminer.cn/open/board?tab=control

High-Priority Mandatory Rules (Critical)

The following four rules are the highest priority and must be followed in any query task:

  • Token Security: Only check whether AMINER_API_KEY exists; never expose the token in plain text in any location (including terminal output, logs, example results, or debug information).
  • Cost Control: Always prefer the optimal combined query; never perform indiscriminate full-detail retrieval. When many results are matched and the user has not specified a count, default to fetching details for only the top 10 results.
  • Free-First: Prefer free APIs unless the user explicitly requires deeper fields or higher precision; only upgrade to paid APIs when free ones cannot meet the need.
  • Result Links: Whenever this skill is used and the result contains entities (papers/scholars/patents/journals), an accessible URL must be appended after each entity, regardless of the scenario or output format.
Entity URL templates (mandatory):
  • Paper: https://www.aminer.cn/pub/{paper_id}
  • Scholar: https://www.aminer.cn/profile/{scholar_id}
  • Patent: https://www.aminer.cn/patent/{patent_id}
  • Journal: https://www.aminer.cn/open/journal/detail/{journal_id}
Enforcement note: This rule applies to all returned results (including summaries, lists, details, comparative analyses, workflow outputs, and raw output transcriptions). Whenever an entity appears and a usable ID is available, a link must be attached.

Violating any of the above rules is considered a process non-compliance; execution must be immediately halted and corrected before continuing.


Step 1: Check Environment Variable Token (Required)

Before making any API call, you must first check whether the environment variable AMINER_API_KEY exists (request headers must include both: Authorization: and X-Platform: openclaw). Only determine whether it "exists / does not exist"; never output, echo, or log the token in plain text (including logs, terminal output, or example results).

Standard check (recommended for direct use):

bash
if [ -z "${AMINER_API_KEY+x}" ]; then
    echo "AMINER_API_KEY does not exist"
else
    echo "AMINER_API_KEY exists"
fi
  • If the token already exists in the environment variable: proceed with the subsequent query workflow.
  • If no token is in the environment variable: check whether the user has explicitly provided --token.
  • If neither the environment variable nor --token is available: stop immediately; do not call any API or enter any subsequent workflow; guide the user to obtain a token first.
Recommended token configuration (preferred):
  • Go to the AMiner Console, log in, and generate an API Token.
  • Set the token as an environment variable: export AMINER_API_KEY=""
  • The script reads the environment variable AMINER_API_KEY by default (if --token is explicitly provided, it takes precedence).
Guidance when no token is available:
  • Clearly inform the user: "A token is currently missing; AMiner API calls cannot continue."
  • Direct the user to the AMiner Console to log in and generate an API Token.
  • For assistance, refer to the Open Platform Documentation.
  • Prompt the user to continue after obtaining a token; they can reply directly: Here is my token:
The token can be generated in the console and reused within its validity period. Do not execute any data query steps before obtaining a token.


Quick Start (Python Script)

All workflows can be driven through scripts/aminer_client.py:

bash
# Recommended: set the environment variable first (no need to pass --token repeatedly)
export AMINER_API_KEY="<TOKEN>"

# Scholar profile analysis
python scripts/aminer_client.py --action scholar_profile --name "Andrew Ng"

# Paper deep dive (with citation chain)
python scripts/aminer_client.py --action paper_deep_dive --title "Attention is all you need"

# Institution research capability analysis
python scripts/aminer_client.py --action org_analysis --org "Tsinghua University"

# Journal paper monitoring (specify year)
python scripts/aminer_client.py --action venue_papers --venue "Nature" --year 2024

# Academic Q&A (natural language query)
python scripts/aminer_client.py --action paper_qa --query "latest advances in transformer architecture"

# Patent search and details
python scripts/aminer_client.py --action patent_search --query "quantum computing"

You can also call a single API directly:

bash
python scripts/aminer_client.py --action raw \
  --api paper_search --params '{"title": "BERT", "page": 0, "size": 5}'

# Or temporarily override the environment variable by explicitly passing --token
python scripts/aminer_client.py --token <TOKEN> --action raw \
  --api paper_search --params '{"title": "BERT", "page": 0, "size": 5}'

Raw mode error-prevention rules (mandatory):

  • Before calling, verify the function signature (parameter names and types must match exactly); never "guess parameters by semantics".
  • Raw parameter constraints are governed by references/api-catalog.md; if it conflicts with prior knowledge, the catalog always takes precedence.
  • paper_info is only for batch basic information; the parameter must be {"ids": [...]}.
  • paper_detail only supports single-paper details; the parameter must be {"paper_id": "..."}. Never pass ids.
  • When multiple paper details are needed: first use low-cost interfaces for filtering (e.g., paper_info / paper_search_pro), then call paper_detail only for the target subset (default top 10 if the user has not specified a count).
  • Before executing, output "the function name to be called + parameter JSON" for self-inspection, then make the request.

Stability and Failure Handling Strategy (Must Read)

The client scripts/aminer_client.py has built-in request retry and fallback strategies to reduce the impact of network fluctuations and transient service errors on results.

  • Timeout and Retry
  • Default request timeout: 30s
  • Maximum retries: 3
  • Backoff strategy: exponential backoff (1s -> 2s -> 4s) + random jitter
  • Retryable Status Codes
  • 408 / 429 / 500 / 502 / 503 / 504
  • Non-Retryable Scenarios
  • Common 4xx errors (e.g., parameter errors, authentication issues) are not retried by default; an error structure is returned directly.
  • Workflow Fallback
  • paper_deep_dive: automatically falls back to paper_search_pro if paper_search yields no results.
  • paper_qa: automatically falls back to paper_search_pro if the query mode yields no results.
  • Traceable Call Chain
  • Combined workflow output includes source_api_chain, marking which APIs were combined to produce the result.

Paper Search API Selection Guide

When the user says "search for papers", first determine whether the goal is "find an ID", "filter results", "Q&A", or "generate an analysis report", then select the API:

APIFocusUse CaseCost
paper_searchTitle search, quickly get paper_idKnown paper title, locate the target paper firstFree
paper_search_proMulti-condition search and sorting (author/institution/journal/keywords)Topic search, sort by citations or year¥0.01/call
paper_qa_searchNatural language Q&A / topic keyword searchUser describes need in natural language; semantic search first¥0.05/call
paper_list_by_search_venueReturns more complete paper info (suitable for analysis)Need richer fields for analysis/reports¥0.30/call
paper_list_by_keywordsMulti-keyword batch retrievalBatch thematic retrieval (e.g., AlphaFold + protein folding)¥0.10/call
paper_detail_by_conditionRetrieve details by year + journal dimensionJournal annual monitoring, venue selection analysis¥0.20/call
Recommended routing (default):
  • Known title: paper_search -> paper_detail -> paper_relation
  • Conditional filtering: paper_search_pro -> paper_detail
  • Natural language Q&A: paper_qa_search (fall back to paper_search_pro if no results)
  • Journal annual analysis: venue_search -> venue_paper_relation -> paper_detail_by_condition
Supplementary rules (strongly recommended):
  • When searching by title only, always use paper_search first (free) to quickly locate the paper ID.
  • For complex semantic retrieval (natural language, multi-condition, fuzzy expressions), prefer paper_qa_search.
  • When using paper_qa_search, first break the natural language need into structured conditions, then fill in the fields (e.g., year, topic keywords, author/institution, etc.).
  • query and topic_high/topic_middle/topic_low are mutually exclusive: choose one; do not pass both simultaneously.
  • When using query mode, fill in a natural language string directly; when using topic_* mode, first expand with synonyms/English variants before filling in.
  • Example: querying "AI-related papers from 2012":
  • year[2012]
  • Option A: query"artificial intelligence"
  • Option B: topic_high[["artificial intelligence","ai","Artificial Intelligence"]] (with use_topic enabled)

Handling Out-of-Workflow Requests (Required)

When the user's request falls outside the 6 workflows above, or existing workflows cannot directly cover it, the following steps must be executed:

  • First read references/api-catalog.md to confirm available interfaces, parameter constraints, and response fields.
  • Select the most appropriate API based on the user's goal and design the shortest viable call chain (locate ID first, then supplement details, then expand relationships).
  • When necessary, combine multiple APIs to complete the query, and annotate source_api_chain in the result to clearly describe the data source path.
  • If multiple combination approaches exist, prefer the one with lower cost, higher stability, and fields that satisfy the requirement.
  • Use the "optimal query combination" as much as possible; avoid indiscriminate full retrieval; perform low-cost search and filtering first, then fetch details for a small set of targets.
  • When results are large and the user has not specified a count, default to querying only the top 10 details and returning a summary first; for example, when 1000 papers are matched, do not call the detail API for all 1000 to reduce user costs.
  • For raw calls, parameter-level validation is required: e.g., paper_info uses ids, paper_detail uses paper_id; do not mix them up.
  • When the user has not explicitly requested deep information, prefer the free path (e.g., paper_search / paper_info / venue_search); only supplement with necessary paid APIs after confirming they are insufficient.
  • When returning the final entity list, the corresponding URL must be included; if entity IDs are missing, supplement them before outputting results.
Do not give up on a query simply because "no existing workflow fits"; actively complete the API combination based on api-catalog.


6 Combined Workflows

Workflow 1: Scholar Profile

Use Case: Understand a scholar's complete academic profile, including bio, research interests, published papers, patents, and research projects.

Call Chain:

text
Scholar search (name → person_id)
    ↓
Parallel calls:
  ├── Scholar details (bio/education/honors)
  ├── Scholar portrait (research interests/experience/work history)
  ├── Scholar papers (paper list)
  ├── Scholar patents (patent list)
  └── Scholar projects (research projects/funding info)

Command:

bash
python scripts/aminer_client.py --token <TOKEN> --action scholar_profile --name "Yann LeCun"

Sample output fields:

  • Basic info: name, institution, title, gender
  • Personal bio (bilingual)
  • Research interests and domains
  • Education history (structured)
  • Work experience (structured)
  • Paper list (ID + title)
  • Patent list (ID + title)
  • Research projects (title/funding amount/dates)

Workflow 2: Paper Deep Dive

Use Case: Retrieve complete paper information and citation relationships based on a paper title or keywords.

Call Chain:

text
Paper search / Paper search pro (title/keyword → paper_id)
    ↓
Paper details (abstract/authors/DOI/journal/year/keywords)
    ↓
Paper citations (which papers this paper cites → cited_ids)
    ↓
(Optional) Batch retrieve basic info for cited papers

Command:

bash
# Search by title
python scripts/aminer_client.py --token <TOKEN> --action paper_deep_dive --title "BERT"

# Search by keyword (using pro API)
python scripts/aminer_client.py --token <TOKEN> --action paper_deep_dive \
  --keyword "large language model" --author "Hinton" --order n_citation


Workflow 3: Org Analysis

Use Case: Analyze an institution's scholar size, paper output, and patent count; suitable for competitive research or partnership evaluation.

Call Chain:

text
Org disambiguation pro (raw string → org_id, handles alias/full-name differences)
    ↓
Parallel calls:
  ├── Org details (description/type/founding date)
  ├── Org scholars (scholar list)
  ├── Org papers (paper list)
  └── Org patents (patent ID list, supports pagination, up to 10,000)

If multiple institutions share the same name, org search returns a candidate list; use org disambiguation pro for precise matching.

Command:

bash
python scripts/aminer_client.py --token <TOKEN> --action org_analysis --org "MIT"
# Specify raw string (with abbreviation/alias)
python scripts/aminer_client.py --token <TOKEN> --action org_analysis --org "Massachusetts Institute of Technology, CSAIL"


Workflow 4: Venue Papers

Use Case: Track papers published in a specific journal for a given year; useful for submission research or research trend analysis.

Call Chain:

text
Venue search (name → venue_id)
    ↓
Venue details (ISSN/type/abbreviation)
    ↓
Venue papers (venue_id + year → paper_id list)
    ↓
(Optional) Batch paper detail query

Command:

bash
python scripts/aminer_client.py --token <TOKEN> --action venue_papers --venue "NeurIPS" --year 2023


Workflow 5: Paper QA Search

Use Case: Intelligently search for papers using natural language or structured keywords; supports SCI filtering, citation-based sorting, author/institution constraints.

Core API: Paper QA Search (¥0.05/call), supports:

  • query: natural language question; system automatically breaks it into keywords
  • topic_high/middle/low: fine-grained keyword weight control (nested array OR/AND logic)
  • sci_flag: show SCI papers only
  • force_citation_sort: sort by citation count
  • force_year_sort: sort by year
  • author_terms / org_terms: filter by author name or institution name
  • author_id / org_id: filter by author ID or institution ID (recommended for disambiguation)
  • venue_ids: filter by conference/journal ID list
Command:
bash
# Natural language Q&A
python scripts/aminer_client.py --token <TOKEN> --action paper_qa \
  --query "deep learning methods for protein structure prediction"

# Fine-grained keyword search (must contain A and B, bonus for C)
python scripts/aminer_client.py --token <TOKEN> --action paper_qa \
  --topic_high '[["transformer","self-attention"],["protein folding"]]' \
  --topic_middle '[["AlphaFold"]]' \
  --sci_flag --sort_citation


Workflow 6: Patent Analysis

Use Case: Search for patents in a specific technology domain, or retrieve a scholar's/institution's patent portfolio.

Call Chain (standalone search):

text
Patent search (query → patent_id)
    ↓
Patent details (abstract/filing date/application number/assignee/inventor)

Call Chain (via scholar/institution):

text
Scholar search → Scholar patents (patent_id list)
Org disambiguation → Org patents (patent_id list)
    ↓
Patent info / Patent details

Command:

bash
python scripts/aminer_client.py --token <TOKEN> --action patent_search --query "quantum computing chip"
python scripts/aminer_client.py --token <TOKEN> --action scholar_patents --name "Shou-Cheng Zhang"


Individual API Quick Reference

For complete parameter descriptions, read references/api-catalog.md

#TitleMethodPriceAPI Path (Base domain: datacenter.aminer.cn/gateway/open_platform)
1Paper QA SearchPOST¥0.05/api/paper/qa/search
2Scholar SearchPOSTFree/api/person/search
3Paper SearchGETFree/api/paper/search
4Paper Search ProGET¥0.01/api/paper/search/pro
5Patent SearchPOSTFree/api/patent/search
6Org SearchPOSTFree/api/organization/search
7Venue SearchPOSTFree/api/venue/search
8Scholar DetailsGET¥1.00/api/person/detail
9Scholar ProjectsGET¥3.00/api/project/person/v3/open
10Scholar PapersGET¥1.50/api/person/paper/relation
11Scholar PatentsGET¥1.50/api/person/patent/relation
12Scholar PortraitGET¥0.50/api/person/figure
13Paper InfoPOSTFree/api/paper/info
14Paper DetailsGET¥0.01/api/paper/detail
15Paper CitationsGET¥0.10/api/paper/relation
16Patent InfoGETFree/api/patent/info
17Patent DetailsGET¥0.01/api/patent/detail
18Org DetailsPOST¥0.01/api/organization/detail
19Org PatentsGET¥0.10/api/organization/patent/relation
20Org ScholarsGET¥0.50/api/organization/person/relation
21Org PapersGET¥0.10/api/organization/paper/relation
22Venue DetailsPOST¥0.20/api/venue/detail
23Venue PapersPOST¥0.10/api/venue/paper/relation
24Org DisambiguationPOST¥0.01/api/organization/na
25Org Disambiguation ProPOST¥0.05/api/organization/na/pro
26Paper Search by VenueGET¥0.30/api/paper/list/by/search/venue
27Paper Batch QueryGET¥0.10/api/paper/list/citation/by/keywords
28Paper Details by Year and VenueGET¥0.20/api/paper/platform/allpubs/more/detail/by/ts/org/venue

References

  • Full API parameter documentation: read references/api-catalog.md
  • Python client source: scripts/aminer_client.py
  • Test cases: evals/evals.json
  • Official documentation: https://open.aminer.cn/open/docs
  • Console: https://open.aminer.cn/open/board?tab=control

Installation

Terminal bash

openclaw install aminer-open-academic
    
Copied!

💻Code Examples

**Standard check (recommended for direct use):**

standard-check-recommended-for-direct-use.sh
if [ -z "${AMINER_API_KEY+x}" ]; then
    echo "AMINER_API_KEY does not exist"
else
    echo "AMINER_API_KEY exists"
fi

--api paper_search --params '{"title": "BERT", "page": 0, "size": 5}'

---api-papersearch---params-title-bert-page-0-size-5.txt
**Raw mode error-prevention rules (mandatory):**
1. Before calling, verify the function signature (parameter names and types must match exactly); never "guess parameters by semantics".
2. Raw parameter constraints are governed by `references/api-catalog.md`; if it conflicts with prior knowledge, the catalog always takes precedence.
3. `paper_info` is only for batch basic information; the parameter must be `{"ids": [...]}`.
4. `paper_detail` only supports single-paper details; the parameter must be `{"paper_id": "..."}`. **Never** pass `ids`.
5. When multiple paper details are needed: first use low-cost interfaces for filtering (e.g., `paper_info` / `paper_search_pro`), then call `paper_detail` only for the target subset (default top 10 if the user has not specified a count).
6. Before executing, output "the function name to be called + parameter JSON" for self-inspection, then make the request.

---

## Stability and Failure Handling Strategy (Must Read)

The client `scripts/aminer_client.py` has built-in request retry and fallback strategies to reduce the impact of network fluctuations and transient service errors on results.

- **Timeout and Retry**
  - Default request timeout: `30s`
  - Maximum retries: `3`
  - Backoff strategy: exponential backoff (`1s -> 2s -> 4s`) + random jitter
- **Retryable Status Codes**
  - `408 / 429 / 500 / 502 / 503 / 504`
- **Non-Retryable Scenarios**
  - Common `4xx` errors (e.g., parameter errors, authentication issues) are not retried by default; an error structure is returned directly.
- **Workflow Fallback**
  - `paper_deep_dive`: automatically falls back to `paper_search_pro` if `paper_search` yields no results.
  - `paper_qa`: automatically falls back to `paper_search_pro` if the `query` mode yields no results.
- **Traceable Call Chain**
  - Combined workflow output includes `source_api_chain`, marking which APIs were combined to produce the result.

---

## Paper Search API Selection Guide

When the user says "search for papers", first determine whether the goal is "find an ID", "filter results", "Q&A", or "generate an analysis report", then select the API:

| API | Focus | Use Case | Cost |
|---|---|---|---|
| `paper_search` | Title search, quickly get `paper_id` | Known paper title, locate the target paper first | Free |
| `paper_search_pro` | Multi-condition search and sorting (author/institution/journal/keywords) | Topic search, sort by citations or year | ¥0.01/call |
| `paper_qa_search` | Natural language Q&A / topic keyword search | User describes need in natural language; semantic search first | ¥0.05/call |
| `paper_list_by_search_venue` | Returns more complete paper info (suitable for analysis) | Need richer fields for analysis/reports | ¥0.30/call |
| `paper_list_by_keywords` | Multi-keyword batch retrieval | Batch thematic retrieval (e.g., AlphaFold + protein folding) | ¥0.10/call |
| `paper_detail_by_condition` | Retrieve details by year + journal dimension | Journal annual monitoring, venue selection analysis | ¥0.20/call |

Recommended routing (default):

1. **Known title**: `paper_search -> paper_detail -> paper_relation`
2. **Conditional filtering**: `paper_search_pro -> paper_detail`
3. **Natural language Q&A**: `paper_qa_search` (fall back to `paper_search_pro` if no results)
4. **Journal annual analysis**: `venue_search -> venue_paper_relation -> paper_detail_by_condition`

Supplementary rules (strongly recommended):

1. **When searching by title only**, always use `paper_search` first (free) to quickly locate the paper ID.
2. **For complex semantic retrieval** (natural language, multi-condition, fuzzy expressions), prefer `paper_qa_search`.
3. When using `paper_qa_search`, first break the natural language need into structured conditions, then fill in the fields (e.g., year, topic keywords, author/institution, etc.).
4. `query` and `topic_high/topic_middle/topic_low` are **mutually exclusive**: choose one; do not pass both simultaneously.
5. When using `query` mode, fill in a natural language string directly; when using `topic_*` mode, first expand with synonyms/English variants before filling in.
6. Example: querying "AI-related papers from 2012":
   - `year` → `[2012]`
   - Option A: `query` → `"artificial intelligence"`
   - Option B: `topic_high` → `[["artificial intelligence","ai","Artificial Intelligence"]]` (with `use_topic` enabled)

---

## Handling Out-of-Workflow Requests (Required)

When the user's request **falls outside the 6 workflows above**, or existing workflows cannot directly cover it, the following steps must be executed:

1. First read `references/api-catalog.md` to confirm available interfaces, parameter constraints, and response fields.
2. Select the most appropriate API based on the user's goal and design the shortest viable call chain (locate ID first, then supplement details, then expand relationships).
3. When necessary, combine multiple APIs to complete the query, and annotate `source_api_chain` in the result to clearly describe the data source path.
4. If multiple combination approaches exist, prefer the one with lower cost, higher stability, and fields that satisfy the requirement.
5. Use the "optimal query combination" as much as possible; avoid indiscriminate full retrieval; perform low-cost search and filtering first, then fetch details for a small set of targets.
6. When results are large and the user has not specified a count, default to querying only the top 10 details and returning a summary first; for example, when 1000 papers are matched, do not call the detail API for all 1000 to reduce user costs.
7. For `raw` calls, parameter-level validation is required: e.g., `paper_info` uses `ids`, `paper_detail` uses `paper_id`; do not mix them up.
8. When the user has not explicitly requested deep information, prefer the free path (e.g., `paper_search` / `paper_info` / `venue_search`); only supplement with necessary paid APIs after confirming they are insufficient.
9. When returning the final entity list, the corresponding URL must be included; if entity IDs are missing, supplement them before outputting results.

> Do not give up on a query simply because "no existing workflow fits"; actively complete the API combination based on `api-catalog`.

---

## 6 Combined Workflows

### Workflow 1: Scholar Profile

**Use Case**: Understand a scholar's complete academic profile, including bio, research interests, published papers, patents, and research projects.

**Call Chain:**

python scripts/aminer_client.py --token <TOKEN> --action scholar_profile --name "Yann LeCun"

python-scriptsaminerclientpy---token-token---action-scholarprofile---name-yann-lecun.txt
**Sample output fields:**
- Basic info: name, institution, title, gender
- Personal bio (bilingual)
- Research interests and domains
- Education history (structured)
- Work experience (structured)
- Paper list (ID + title)
- Patent list (ID + title)
- Research projects (title/funding amount/dates)

---

### Workflow 2: Paper Deep Dive

**Use Case**: Retrieve complete paper information and citation relationships based on a paper title or keywords.

**Call Chain:**

--keyword "large language model" --author "Hinton" --order n_citation

---keyword-large-language-model---author-hinton---order-ncitation.txt
---

### Workflow 3: Org Analysis

**Use Case**: Analyze an institution's scholar size, paper output, and patent count; suitable for competitive research or partnership evaluation.

**Call Chain:**

└── Org patents (patent ID list, supports pagination, up to 10,000)

--org-patents-patent-id-list-supports-pagination-up-to-10000.txt
> If multiple institutions share the same name, org search returns a candidate list; use org disambiguation pro for precise matching.

**Command:**

python scripts/aminer_client.py --token <TOKEN> --action org_analysis --org "Massachusetts Institute of Technology, CSAIL"

python-scriptsaminerclientpy---token-token---action-organalysis---org-massachusetts-institute-of-technology-csail.txt
---

### Workflow 4: Venue Papers

**Use Case**: Track papers published in a specific journal for a given year; useful for submission research or research trend analysis.

**Call Chain:**

python scripts/aminer_client.py --token <TOKEN> --action venue_papers --venue "NeurIPS" --year 2023

python-scriptsaminerclientpy---token-token---action-venuepapers---venue-neurips---year-2023.txt
---

### Workflow 5: Paper QA Search

**Use Case**: Intelligently search for papers using natural language or structured keywords; supports SCI filtering, citation-based sorting, author/institution constraints.

**Core API**: `Paper QA Search` (¥0.05/call), supports:
- `query`: natural language question; system automatically breaks it into keywords
- `topic_high/middle/low`: fine-grained keyword weight control (nested array OR/AND logic)
- `sci_flag`: show SCI papers only
- `force_citation_sort`: sort by citation count
- `force_year_sort`: sort by year
- `author_terms / org_terms`: filter by author name or institution name
- `author_id / org_id`: filter by author ID or institution ID (recommended for disambiguation)
- `venue_ids`: filter by conference/journal ID list

**Command:**

--sci_flag --sort_citation

---sciflag---sortcitation.txt
---

### Workflow 6: Patent Analysis

**Use Case**: Search for patents in a specific technology domain, or retrieve a scholar's/institution's patent portfolio.

**Call Chain (standalone search):**
example.sh
# Recommended: set the environment variable first (no need to pass --token repeatedly)
export AMINER_API_KEY="<TOKEN>"

# Scholar profile analysis
python scripts/aminer_client.py --action scholar_profile --name "Andrew Ng"

# Paper deep dive (with citation chain)
python scripts/aminer_client.py --action paper_deep_dive --title "Attention is all you need"

# Institution research capability analysis
python scripts/aminer_client.py --action org_analysis --org "Tsinghua University"

# Journal paper monitoring (specify year)
python scripts/aminer_client.py --action venue_papers --venue "Nature" --year 2024

# Academic Q&A (natural language query)
python scripts/aminer_client.py --action paper_qa --query "latest advances in transformer architecture"

# Patent search and details
python scripts/aminer_client.py --action patent_search --query "quantum computing"
example.sh
python scripts/aminer_client.py --action raw \
  --api paper_search --params '{"title": "BERT", "page": 0, "size": 5}'

# Or temporarily override the environment variable by explicitly passing --token
python scripts/aminer_client.py --token <TOKEN> --action raw \
  --api paper_search --params '{"title": "BERT", "page": 0, "size": 5}'

Tags

#search_and-research #data

Quick Info

Category Web Scrapers
Model Claude 3.5
Complexity One-Click
Author canxiangcc
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install aminer-open-academic