skills/43-wentorai-research-plugins/skills/literature/search/scielo-api/SKILL.md
Access Latin American and developing world research via SciELO API
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research scielo-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
SciELO (Scientific Electronic Library Online) is the primary open access platform for scholarly journals in Latin America, the Caribbean, Spain, Portugal, and South Africa. It indexes 1,800+ peer-reviewed journals and 900K+ articles, many not indexed elsewhere. All content is open access. The API provides article search, journal metadata, and bibliometric indicators. Free, no authentication required.
Search and retrieve articles:
# Search articles by keyword
curl "https://articlemeta.scielo.org/api/v1/article/?collection=scl&q=machine+learning"
# Get article by PID (SciELO identifier)
curl "https://articlemeta.scielo.org/api/v1/article/?code=S0100-204X2024000100001"
# Filter by collection (country)
curl "https://articlemeta.scielo.org/api/v1/article/?collection=esp&q=climate+change"
# Filter by journal ISSN
curl "https://articlemeta.scielo.org/api/v1/article/?issn=0100-204X&from_date=2024-01-01"
| Code | Country/Region |
|------|---------------|
| scl | Brazil |
| esp | Spain |
| mex | Mexico |
| col | Colombia |
| chl | Chile |
| arg | Argentina |
| cub | Cuba |
| ven | Venezuela |
| prt | Portugal |
| zaf | South Africa |
# List journals in a collection
curl "https://articlemeta.scielo.org/api/v1/journal/?collection=scl"
# Get journal by ISSN
curl "https://articlemeta.scielo.org/api/v1/journal/?issn=0100-204X"
# Journal indicators
curl "https://analytics.scielo.org/api/v1/journal/?issn=0100-204X"
Full-text search with facets:
# Full-text search
curl "https://search.scielo.org/?q=biodiversity+conservation&format=json&count=20"
# Filter by subject area
curl "https://search.scielo.org/?q=neural+networks&filter[subject_area]=Computer+Science&format=json"
# Filter by year range
curl "https://search.scielo.org/?q=CRISPR&filter[year_cluster]=2023-2026&format=json"
# Filter by language
curl "https://search.scielo.org/?q=epidemiology&filter[la]=en&format=json"
| Parameter | Description | Example |
|-----------|-------------|---------|
| q | Free-text query | q=tropical+ecology |
| collection | Country code | collection=scl |
| issn | Journal ISSN | issn=0100-204X |
| from_date | Articles from date | from_date=2024-01-01 |
| until_date | Articles until date | until_date=2026-12-31 |
| format | Response format | json, xml |
| count | Results per page | count=50 |
| offset | Pagination offset | offset=20 |
import requests
ARTICLE_API = "https://articlemeta.scielo.org/api/v1"
SEARCH_API = "https://search.scielo.org"
def search_scielo(query: str, collection: str = None,
count: int = 20) -> list:
"""Search SciELO articles."""
params = {"q": query, "format": "json", "count": count}
if collection:
params["collection"] = collection
resp = requests.get(f"{SEARCH_API}/", params=params)
resp.raise_for_status()
data = resp.json()
results = []
for doc in data.get("docs", data.get("results", [])):
results.append({
"title": doc.get("title", {}).get("en", doc.get("title", "")),
"authors": doc.get("authors", []),
"journal": doc.get("journal_title", ""),
"year": doc.get("publication_year", ""),
"doi": doc.get("doi", ""),
"pid": doc.get("pid", ""),
"language": doc.get("la", []),
"url": f"https://scielo.org/article/{doc.get('pid', '')}",
})
return results
def get_article(pid: str) -> dict:
"""Get full article metadata by SciELO PID."""
resp = requests.get(
f"{ARTICLE_API}/article/",
params={"code": pid, "format": "json"},
)
resp.raise_for_status()
return resp.json()
def list_journals(collection: str = "scl") -> list:
"""List journals in a SciELO collection."""
resp = requests.get(
f"{ARTICLE_API}/journal/",
params={"collection": collection, "format": "json"},
)
resp.raise_for_status()
return resp.json()
# Example: find Brazilian ecology research
papers = search_scielo("Amazon deforestation biodiversity", collection="scl")
for p in papers:
print(f"[{p['year']}] {p['title']} — {p['journal']}")
# Example: find Spanish medical research
papers = search_scielo("diabetes treatment", collection="esp")
for p in papers:
print(f"{p['title']} (DOI: {p['doi']})")
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.