# ROR Research Institute Scraper

**Use case:** 

Scrape research institute records from the Research Organization Registry (ROR) with ROR ID, name, type, location, and external IDs. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://ror.org/search?filter=&query=university",
  "query": "research institute",
  "recordStatus": "active",
  "maxItems": 50
}
```

## Output

```json
{
  "rorId": {
    "label": "ROR ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "url": {
    "label": "ROR URL",
    "format": "link"
  },
  "types": {
    "label": "Types",
    "format": "array"
  },
  "established": {
    "label": "Established",
    "format": "text"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "link"
  },
  "domains": {
    "label": "Domains",
    "format": "array"
  },
  "gridId": {
    "label": "GRID ID",
    "format": "text"
  },
  "wikidataId": {
    "label": "Wikidata ID",
    "format": "text"
  },
  "fundRefId": {
    "label": "FundRef ID",
    "format": "text"
  },
  "isniIds": {
    "label": "ISNI IDs",
    "format": "array"
  },
  "aliases": {
    "label": "Aliases",
    "format": "array"
  },
  "acronyms": {
    "label": "Acronyms",
    "format": "array"
  },
  "lastModifiedDate": {
    "label": "Last Modified",
    "format": "date"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [ROR (Research Organization Registry) Scraper](https://apify.com/parseforge/ror-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/ror-scraper) to learn more, explore other use cases, and run it yourself.