ROR Research Organization Registry Scraper
Pricing
Pay per event
ROR Research Organization Registry Scraper
🔎 Export normalized Research Organization Registry records with ROR IDs, locations, websites, domains, relationships, and external IDs.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Stas Persiianenko
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Find and export clean organization records from the public Research Organization Registry (ROR). This actor helps you turn ROR search results into a spreadsheet-ready dataset with ROR IDs, names, websites, countries, cities, domains, aliases, relationships, and external identifiers.
What does ROR Research Organization Registry Scraper do?
ROR Research Organization Registry Scraper queries the official ROR organizations API and saves normalized organization rows to an Apify dataset.
It is useful when you need reliable organization identifiers for universities, hospitals, research institutes, companies, funders, nonprofits, archives, facilities, and government research organizations.
The actor uses HTTP requests to the public JSON API. It does not need a login, browser automation, or a private API key.
Who is it for?
🧪 Research intelligence and bibliometrics teams
Use the actor to normalize author affiliations, map institutions to stable ROR IDs, enrich publication datasets, and keep research organization directories consistent across dashboards.
Typical workflows:
- Match messy affiliation strings to persistent organization identifiers.
- Export universities, hospitals, funders, and institutes by country or type.
- Join ROR records with OpenAlex, Crossref, Wikidata, GRID, ISNI, or FundRef data.
🏫 Universities, healthcare systems, and public-sector analysts
Use the actor when you need a clean reference list of schools, medical centers, laboratories, facilities, agencies, archives, or nonprofit research organizations.
Typical workflows:
- Build or refresh institutional master data for analytics teams.
- Find active healthcare research organizations in a target geography.
- Audit domains, aliases, acronyms, and related organizations before loading a CRM or warehouse.
💼 Sales, partnerships, grant, and data operations teams
Use the actor to turn ROR search into repeatable prospecting, enrichment, and deduplication workflows without hand-copying registry pages.
Typical workflows:
- Prospect universities, funders, hospitals, and labs for B2B or partnership outreach.
- Deduplicate organization names before account matching or vendor research.
- Schedule recurring exports so downstream systems get current public registry data.
Why use this actor?
ROR is a trusted open registry, but analysts often need data in repeatable CSV, JSON, Excel, or API workflows. This actor handles search, filters, pagination, normalization, and output formatting for you.
You can run it on a schedule, connect it to webhooks, or use it from the Apify API when you need fresh organization intelligence.
Typical use cases
- Build a directory of active US education institutions.
- Export healthcare research organizations in a target country.
- Normalize company, hospital, or university names with ROR IDs.
- Collect domains for institutional email matching.
- Map organizations to Wikidata, GRID, ISNI, or FundRef identifiers.
- Feed CRM, enrichment, bibliometrics, and lead research pipelines.
Data you can extract
| Field | Description |
|---|---|
rorId | Compact ROR identifier. |
rorUrl | Full ROR URL. |
name | Primary organization name. |
status | ROR status such as active. |
types | Organization types such as education or healthcare. |
established | Established year when available. |
countryCode | ISO country code. |
countryName | Country name. |
city | City or location name. |
state | Region or subdivision. |
domains | Known web domains. |
websiteUrl | Website link. |
aliases | Alternative names. |
acronyms | Acronyms. |
relationships | Related organizations. |
wikidataIds | Wikidata IDs. |
fundrefIds | FundRef IDs. |
How much does it cost to scrape ROR organizations?
This actor uses pay-per-event pricing. You pay a small run start fee and then a per-organization fee for each dataset row saved. There is no proxy surcharge because the actor calls the public ROR API directly.
The default run is intentionally small and inexpensive. Increase maxItems when you are ready to export larger ROR result sets.
| Example run | Input idea | Rows saved | Estimated actor charge* | Best for |
|---|---|---|---|---|
| Quick lookup | queries=["stanford"] | 10 | about $0.0052 | Testing the fields and output format. |
| Focused country/type export | university + US + education | 100 | about $0.0073 | A small institutional list or QA sample. |
| Larger reference pull | hospital or research institute | 1,000 | about $0.0283 | CRM, data warehouse, or analytics refreshes. |
*Estimates use the current BRONZE tier: a $0.005 start event plus roughly $0.000023 per saved organization. Exact charges can vary by your Apify plan tier and future pricing updates. The Apify Free plan can usually cover many small tests; at this price, a $5 free monthly credit is roughly enough for hundreds of quick 10-row lookups or about 170,000 saved organization rows after start fees.
Input options
Provide one or more search queries and optional filters.
{"queries": ["university"],"countryCodes": ["US"],"organizationTypes": ["education"],"statuses": ["active"],"maxItems": 100,"requestDelayMs": 250,"includeRawData": false}
Search queries
Use organization names, keywords, or category-like terms.
Good examples:
universityhospitalcancer centermax planckstanfordresearch institute
Country filters
Use ISO 3166-1 alpha-2 country codes.
Examples:
USGBDECAAUFR
Organization type filters
ROR commonly uses these types:
educationhealthcarecompanyfundernonprofitgovernmentfacilityarchiveother
Status filters
Most production workflows should use:
active
You can also omit the status filter if you want the API's broader default matching behavior.
Output example
{"rorId": "00f54p054","rorUrl": "https://ror.org/00f54p054","name": "Stanford University","status": "active","types": ["education", "funder"],"countryCode": "US","countryName": "United States","city": "Stanford","domains": ["stanford.edu"],"websiteUrl": "https://www.stanford.edu","wikidataIds": ["Q41506"],"query": "stanford"}
How to run the actor
- Open the actor on Apify.
- Enter one or more search queries.
- Add country, type, or status filters if needed.
- Set
maxItemsto the maximum number of organizations to export. - Start the run.
- Download the dataset as CSV, JSON, Excel, XML, or RSS.
Tips for better results
- Start broad with
university,hospital, orresearch institute. - Add
countryCodesto keep output focused. - Add
organizationTypeswhen you need only universities, hospitals, companies, or funders. - Use
includeRawDatawhen you need every original ROR source field. - Run several smaller filtered searches instead of one huge unfocused query.
Integrations
Use this actor with:
- CRM enrichment workflows for organization identity resolution.
- Grant prospecting pipelines that need funder and research institution metadata.
- Bibliometrics dashboards that normalize affiliation strings.
- University partnership databases.
- Data warehouse jobs that periodically refresh ROR IDs and domains.
- Vendor discovery systems that target public research organizations.
API usage with Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('automation-lab/ror-research-organization-registry-scraper').call({queries: ['university'],countryCodes: ['US'],organizationTypes: ['education'],statuses: ['active'],maxItems: 100,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
API usage with Python
from apify_client import ApifyClientimport osclient = ApifyClient(os.environ['APIFY_TOKEN'])run = client.actor('automation-lab/ror-research-organization-registry-scraper').call(run_input={'queries': ['hospital'],'countryCodes': ['GB'],'organizationTypes': ['healthcare'],'maxItems': 100,})items = client.dataset(run['defaultDatasetId']).list_items().itemsprint(items[:3])
API usage with cURL
curl -X POST "https://api.apify.com/v2/acts/automation-lab~ror-research-organization-registry-scraper/runs?token=$APIFY_TOKEN" \-H 'Content-Type: application/json' \-d '{"queries":["university"],"countryCodes":["US"],"organizationTypes":["education"],"maxItems":100}'
MCP usage
You can use this actor from Apify MCP in Claude Desktop, Claude Code, and other MCP-compatible tools.
MCP server URL:
https://mcp.apify.com/?tools=automation-lab/ror-research-organization-registry-scraper
Claude Code setup:
$claude mcp add --transport http apify-ror "https://mcp.apify.com/?tools=automation-lab/ror-research-organization-registry-scraper"
Claude Desktop, Cursor, or VS Code MCP JSON config:
{"mcpServers": {"apify-ror": {"type": "http","url": "https://mcp.apify.com/?tools=automation-lab/ror-research-organization-registry-scraper"}}}
Where to paste it:
- Claude Desktop: Settings → Developer → Edit Config, then restart Claude Desktop.
- Cursor: Settings → MCP → Add server, or paste the JSON into your Cursor MCP config file.
- VS Code: Add the same server object to your MCP extension/server configuration.
Example prompts:
- "Find active ROR education organizations in the United States and summarize the top domains."
- "Export healthcare research organizations in the United Kingdom from ROR."
- "Normalize this list of university names using ROR IDs."
Scheduling
Schedule the actor weekly or monthly to refresh your organization reference table. ROR records can change as names, relationships, and external identifiers are updated.
Webhooks
Attach an Apify webhook to send completed datasets into your own system, warehouse, or automation platform.
Data quality notes
The actor returns data from the public ROR API. Some fields are optional because the source registry does not have every domain, coordinate, relationship, or external identifier for every organization.
Legality
This actor uses a public registry API and exports factual organization metadata. Always use the data according to your local laws, ROR terms, and your organization's data governance policies.
FAQ
Why did I get fewer rows than expected?
ROR search is relevance based and filters can narrow results. Try a broader query, remove a country or type filter, or increase maxItems.
Why are some fields empty?
Not every ROR organization has every optional field. Empty arrays or missing URLs usually mean the source record does not provide that data.
Related scrapers
Other automation-lab actors can complement this workflow:
- https://apify.com/automation-lab/openalex-scraper
- https://apify.com/automation-lab/crossref-scraper
- https://apify.com/automation-lab/google-scholar-scraper
- https://apify.com/automation-lab/website-contact-finder
Changelog
Initial version exports normalized ROR organization rows from the public API.
Support
If you need a new field, a different filter, or a larger enrichment workflow, open an issue on the actor page.
Field reference
rorId is the stable compact ID.
rorUrl is the canonical ROR URL.
name is the display name.
types contains all source organization types.
domains contains known domains.
relationships contains related organization summaries.
gridIds, isniIds, fundrefIds, and wikidataIds help match records across external systems.
Performance
The ROR API returns up to 20 organizations per page. The actor paginates until it reaches maxItems or the result set ends.
Reliability
The actor retries temporary API failures and uses a polite configurable delay between requests.