Research & language / API
OpenAlex
Explore a research index and its API documentation.
Before you use this resource
Coverage and affiliation matching need checking. Consult current API access conditions.
- Published by
- OurResearch
- Source
- Nonprofit organisation
- Collection
- Research & language
- Resource type
- API
- Coverage
- Global; filter for research relevant to Romania
- Documented formats
- JSON
- Licence / terms
- Rights need checking
- API access
- Documented API
- Record review date
- 2026-09-06
- Last resource update
- Unknown
- Technical data audit
- Not performed
- Documentation
- Source reviewed
Documentation
The introduction or documentation was reviewed. Files and APIs were not comprehensively tested.
The cited page documents this record. Check the original source for terms and versions before reuse.
Direct API queries
curl -s 'https://api.openalex.org/works?filter=institutions.country_code:RO&per-page=5' | jq .import urllib.request
import json
url = "https://api.openalex.org/works?filter=institutions.country_code:RO&per-page=5"
req = urllib.request.Request(url, headers={"User-Agent": "CunoastereDeschisa/1.7"})
with urllib.request.urlopen(req) as resp:
data = json.loads(resp.read().decode("utf-8"))
print(json.dumps(data, indent=2)[:500])library(jsonlite)
data <- fromJSON("https://api.openalex.org/works?filter=institutions.country_code:RO&per-page=5")
str(data)INSTALL httpfs;
LOAD httpfs;
SELECT * FROM read_json_auto('https://api.openalex.org/works?filter=institutions.country_code:RO&per-page=5')
LIMIT 10;Executable query snippets for command line, data pipelines, or DuckDB.
Continue your research
Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.