Advanced query parameter

👍

ROR REST API v2

This page documents v2 of the ROR REST API. For v1 documentation of the ROR REST API, see https://ror.readme.io/v1/docs/api-advanced-query. You can also read more about ROR API versions and a summary of what's new in Schema 2.0.

About the advanced query parameter

The advanced query parameter allows thorough and precise searching of any and all ROR record fields. Complex queries using field names, wildcards, and Boolean operators can be constructed using Elasticsearch query string syntax. The advanced query approach is recommended for the following purposes:

  • Analysis of the ROR registry to answer research questions
  • Searching for records with very specific characteristics or combinations of characteristics

While the Query parameter is designed to help users find organization names quickly with a lightweight keyword search, the advanced query parameter is designed to help users construct more complex and powerful searches. The query parameter searches only the names and external_ids fields in a ROR record, whereas the advanced query parameter allows for searching of all fields and sub-fields in ROR records, including location fields, web address fields, relationship fields, and more.

See All ROR fields and sub-fields for a complete alphabetical list of the fields and sub-fields that can be searched with the advanced query parameter.

Formatting searches

All request strings must be URL-encoded.

Special characters

Some organization names contain characters like &, (), : and /, which have special meaning in URI syntax, Elasticsearch syntax or both. To avoid error responses or bad results:

  • Be sure to URL-encode all advanced query parameter values.
  • Escape any Elasticsearch reserved characters in the organization name with a URL-encoded backslash \ character. Reserved characters include + - = && || > < ! ( ) { } [ ] ^ " ~ * ? : \ /

Spaces and quotation marks

Elasticsearch query string syntax will treat words separated by a space as separate parts of an advanced query. It is therefore advisable to surround multi-word search terms of the ROR API with URL-encoded quotation marks.

Wildcards, Boolean operators, and date ranges

Consult the Elasticsearch query string syntax documentation for any additional help not provided by the examples below on how to search within single fields and use wildcards, Boolean operators, and date ranges with the advanced query parameter of the ROR REST API.

Case sensitivity

Currently, the advanced query parameter is case-sensitive, meaning that the same search may return different results depending on the letter case of the input string. For best results, capitalize location names (Panama not panama) and be aware of uppercase and lowercase differences in other field data. We may change this behavior in future to support case insensitivity for all searches.

Search by date

In version 2 of the ROR API, you can search by created and last modified dates using an Elasticsearch range query. Note that unescaped reserved characters such as [, ], {, and } must be used in range queries. This is the use case they are reserved for! Escaped brackets and braces will be processed as string literals and will not produce the expected results. Brackets must, however, be URL-encoded.

Example

Search for records modified between two dates.

curl 'https://api.ror.org/v2/organizations?query.advanced=admin.last_modified.date:%5B2023-07-01%20TO%202023-09-05%5D' | json_pp

The response is a list of active records modified between 2023-07-01 and 2023-09-05.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "100014270"
               ],
               "preferred" : "100014270",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 7789 2553"
               ],
               "preferred" : "0000 0004 7789 2553",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q55829215"
               ],
               "preferred" : "Q55829215",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03xf80p12",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.rhodora.org"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.58759,
                  "lng" : -72.59953,
                  "name" : "Greenfield"
               },
               "geonames_id" : 4938378
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NEBC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New England Botanical Club"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "New England Botanical Club, Inc."
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1874,
         "external_ids" : [
            {
               "all" : [
                  "Q62067267"
               ],
               "preferred" : "Q62067267",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05d3yke23",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ecole-paysage.fr/site/ensp_fr/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "FR",
                  "country_name" : "France",
                  "lat" : 48.80359,
                  "lng" : 2.13424,
                  "name" : "Versailles"
               },
               "geonames_id" : 2969679
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ENSP"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "École nationale supérieure de paysage de Versailles"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1965,
         "external_ids" : [
            {
               "all" : [
                  "grid.411258.b"
               ],
               "preferred" : "grid.411258.b",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/0131vfw26",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.saludcastillayleon.es/CASalamanca/es"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "ES",
                  "country_name" : "Spain",
                  "lat" : 40.96882,
                  "lng" : -5.66388,
                  "name" : "Salamanca"
               },
               "geonames_id" : 3111108
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Complejo Asistencial Universitario de Salamanca"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Complejo Hospitalario de Salamanca"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03em6xj44",
               "label" : "Instituto de Investigación Biomédica de Salamanca",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02f40zc51",
               "label" : "Universidad de Salamanca",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2015,
         "external_ids" : [
            {
               "all" : [
                  "Q21190858"
               ],
               "preferred" : "Q21190858",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04mgxhr44",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.mumc.gov.bd"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Mugda_Medical_College_%26_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BD",
                  "country_name" : "Bangladesh",
                  "lat" : 23.7104,
                  "lng" : 90.40744,
                  "name" : "Dhaka"
               },
               "geonames_id" : 1185241
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "MUMC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Mugda Medical College"
            },
            {
               "lang" : "bn",
               "types" : [
                  "label"
               ],
               "value" : "মুগদা মেডিকেল কলেজ"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1937,
         "external_ids" : [
            {
               "all" : [
                  "grid.418291.7"
               ],
               "preferred" : "grid.418291.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0456 337X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q28974592"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/015q23935",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.senegal.ird.fr/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "SN",
                  "country_name" : "Senegal",
                  "lat" : 14.6937,
                  "lng" : -17.44406,
                  "name" : "Dakar"
               },
               "geonames_id" : 2253354
            }
         ],
         "names" : [
            {
               "lang" : "en",
               "types" : [
                  "label"
               ],
               "value" : "French Research Institute for Development"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IRD"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institut de Recherche pour le Développement"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/011xg1225",
               "label" : "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03vte9x46",
               "label" : "Observatoire des Sciences de l'Univers de Grenoble",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05q3vnk25",
               "label" : "Institut de Recherche pour le Développement",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1904,
         "external_ids" : [
            {
               "all" : [
                  "100014791"
               ],
               "preferred" : "100014791",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 0431 5288"
               ],
               "preferred" : "0000 0004 0431 5288",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4925621"
               ],
               "preferred" : "Q4925621",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05t0v7d07",
         "links" : [
            {
               "type" : "website",
               "value" : "https://iowadot.gov"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Iowa_Department_of_Transportation"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.60054,
                  "lng" : -93.60911,
                  "name" : "Des Moines"
               },
               "geonames_id" : 4853828
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "IA Department of Transportation"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IADOT"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Iowa DOT"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Iowa Department of Transportation"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Iowa Department of Transportation, Iowa"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Iowa Dept. of Transportation"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Iowa State DOT"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "State of Iowa - Department of Transportation"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1955,
         "external_ids" : [
            {
               "all" : [
                  "501100012691"
               ],
               "preferred" : "501100012691",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 7832 2325"
               ],
               "preferred" : "0000 0004 7832 2325",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q18690730"
               ],
               "preferred" : "Q18690730",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/040k5fq90",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.olvisaatio.fi"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "FI",
                  "country_name" : "Finland",
                  "lat" : 63.55915,
                  "lng" : 27.19067,
                  "name" : "Iisalmi"
               },
               "geonames_id" : 656820
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "OLVI-Säätiö"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Olvi Foundation"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "501100014363"
               ],
               "preferred" : "501100014363",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 8309 8014"
               ],
               "preferred" : "0000 0004 8309 8014",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q54857305"
               ],
               "preferred" : "Q54857305",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0021fvv57",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.ictp-saifr.org"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BR",
                  "country_name" : "Brazil",
                  "lat" : -23.5475,
                  "lng" : -46.63611,
                  "name" : "São Paulo"
               },
               "geonames_id" : 3448439
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "ICTP South American Institute for Fundamental Research"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ICTP-SAIFR"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "International Centre for Theoretical Physics South American Institute for Fundamental Research"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1929,
         "external_ids" : [
            {
               "all" : [
                  "grid.457084.a"
               ],
               "preferred" : "grid.457084.a",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/008kdr741",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.unirio.br/hugg"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BR",
                  "country_name" : "Brazil",
                  "lat" : -22.90642,
                  "lng" : -43.18223,
                  "name" : "Rio de Janeiro"
               },
               "geonames_id" : 3451190
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HUGG"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Hospital Universitário Gaffrée e Guinle"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04tec8z30",
               "label" : "Universidade Federal do Estado do Rio de Janeiro",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1981,
         "external_ids" : [
            {
               "all" : [
                  "100015889"
               ],
               "preferred" : "100015889",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.412298.4"
               ],
               "preferred" : "grid.412298.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 8577 8102"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4693940"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02sp3q482",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.aup.edu.pk/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Agriculture,_Peshawar"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "PK",
                  "country_name" : "Pakistan",
                  "lat" : 34.008,
                  "lng" : 71.57849,
                  "name" : "Peshawar"
               },
               "geonames_id" : 1168197
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Khyber Pakhtunkhwa Agricultural University"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "The University of Agriculture, Peshawar"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UAP"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "University of Agriculture"
            },
            {
               "lang" : "ur",
               "types" : [
                  "label"
               ],
               "value" : "زرعی جامعہ پشاور"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1819,
         "external_ids" : [
            {
               "all" : [
                  "grid.462233.2"
               ],
               "preferred" : "grid.462233.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 1544 4083"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q29293"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/040hhjv66",
         "links" : [
            {
               "type" : "website",
               "value" : "https://escp.eu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/ESCP_Business_School"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "FR",
                  "country_name" : "France",
                  "lat" : 48.85341,
                  "lng" : 2.3488,
                  "name" : "Paris"
               },
               "geonames_id" : 2988507
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "ESCP Business School"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "École Supérieure de Commerce de Paris"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01r8xsy94",
               "label" : "ESCP Business School",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/036d5c397",
               "label" : "ESCP Business School",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/018d9zk51",
               "label" : "ESCP Business School",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2004,
         "external_ids" : [
            {
               "all" : [
                  "grid.439576.a"
               ],
               "preferred" : "grid.439576.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q16988941"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01yc93g67",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.dbth.nhs.uk/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Doncaster_and_Bassetlaw_Teaching_Hospitals_NHS_Foundation_Trust"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "GB",
                  "country_name" : "United Kingdom",
                  "lat" : 53.52285,
                  "lng" : -1.13116,
                  "name" : "Doncaster"
               },
               "geonames_id" : 2651123
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "DBTH"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Doncaster and Bassetlaw Teaching Hospitals NHS Foundation Trust"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/0144zzh56",
               "label" : "Bassetlaw Hospital",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02xbmha33",
               "label" : "Montagu Hospital",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04f4nzq23",
               "label" : "Retford Hospital",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/050xdz686",
               "label" : "Doncaster Royal Infirmary",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1969,
         "external_ids" : [
            {
               "all" : [
                  "grid.412116.1"
               ],
               "preferred" : "grid.412116.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2292 1474"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30103166"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/033yb0967",
         "links" : [
            {
               "type" : "website",
               "value" : "http://chu-mondor.aphp.fr/lhopital-henri-mondor/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "FR",
                  "country_name" : "France",
                  "lat" : 48.79266,
                  "lng" : 2.46569,
                  "name" : "Créteil"
               },
               "geonames_id" : 3022530
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Centre Hospitalier Universitaire Henri-Mondor"
            },
            {
               "lang" : "en",
               "types" : [
                  "label"
               ],
               "value" : "Henri-Mondor University Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Hôpitaux Universitaires Henri-Mondor"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/053385a79",
               "label" : "Hôpital Dupuytren",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03zry0650",
               "label" : "Hôpital Georges-Clemenceau",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01sr2h546",
               "label" : "Hôpital Émile-Roux",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00pg5jh14",
               "label" : "Assistance Publique – Hôpitaux de Paris",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/05ggc9x40",
               "label" : "Université Paris-Est Créteil",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1992,
         "external_ids" : [],
         "id" : "https://ror.org/04xge9533",
         "links" : [
            {
               "type" : "website",
               "value" : "https://bbs.gov.bz"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/The_Belize_Bureau_of_Standards"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BZ",
                  "country_name" : "Belize",
                  "lat" : 17.49952,
                  "lng" : -88.19756,
                  "name" : "Belize City"
               },
               "geonames_id" : 3582677
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BBS"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Belize Bureau of Standards"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "100010229"
               ],
               "preferred" : "100010229",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 6090 5370"
               ],
               "preferred" : "0000 0004 6090 5370",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7010174"
               ],
               "preferred" : "Q7010174",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0248n9g36",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.wildlife.state.nm.us"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/New_Mexico_Department_of_Game_and_Fish"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 35.68698,
                  "lng" : -105.9378,
                  "name" : "Santa Fe"
               },
               "geonames_id" : 5490263
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NMDGF"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New Mexico Department of Game and Fish"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1964,
         "external_ids" : [
            {
               "all" : [
                  "grid.462441.1"
               ],
               "preferred" : "grid.462441.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9002 6335"
               ],
               "preferred" : "0000 0000 9002 6335",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q11683325"
               ],
               "preferred" : "Q11683325",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0558r1s97",
         "links" : [
            {
               "type" : "website",
               "value" : "http://cdjuarez.tecnm.mx"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_Ciudad_Ju%C3%A1rez"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "MX",
                  "country_name" : "Mexico",
                  "lat" : 31.72024,
                  "lng" : -106.46084,
                  "name" : "Ciudad Juárez"
               },
               "geonames_id" : 4013708
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ITCJ"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Instituto Tecnológico de Ciudad Juárez"
            },
            {
               "lang" : "en",
               "types" : [
                  "label"
               ],
               "value" : "Technological Institute of Ciudad Juárez"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "100010801"
               ],
               "preferred" : "100010801",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 6091 2263"
               ],
               "preferred" : "0000 0004 6091 2263",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q45135599"
               ],
               "preferred" : "Q45135599",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/032crvm08",
         "links" : [
            {
               "type" : "website",
               "value" : "https://ernst-goehner-stiftung.ch"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "CH",
                  "country_name" : "Switzerland",
                  "lat" : 47.17242,
                  "lng" : 8.51745,
                  "name" : "Zug"
               },
               "geonames_id" : 2657908
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Ernst Göhner Foundation"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ernst Göhner Stiftung"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1934,
         "external_ids" : [
            {
               "all" : [
                  "0000 0001 0494 4883"
               ],
               "preferred" : "0000 0001 0494 4883",
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/016b66y19",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.christusmuguerza.com.mx/hospital-alta-especialidad"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "MX",
                  "country_name" : "Mexico",
                  "lat" : 25.67507,
                  "lng" : -100.31847,
                  "name" : "Monterrey"
               },
               "geonames_id" : 3995465
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Christus Muguerza Alta Especialidad"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Christus Muguerza Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HCMAE"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Hospital Christus Muguerza"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Hospital Christus Muguerza Alta Especialidad"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "100014994"
               ],
               "preferred" : "100014994",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0001 0741 0692"
               ],
               "preferred" : "0000 0001 0741 0692",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q25404164"
               ],
               "preferred" : "Q25404164",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03c240v55",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.malacological.org"
            },
            {
               "type" : "wikipedia",
               "value" : "https://pl.wikipedia.org/wiki/American_Malacological_Society"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 21.30694,
                  "lng" : -157.85833,
                  "name" : "Honolulu"
               },
               "geonames_id" : 5856195
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "AMS"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "American Malacological Society"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "American Malacological Union"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "100016409"
               ],
               "preferred" : "100016409",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0001 0730 4427"
               ],
               "preferred" : "0000 0001 0730 4427",
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/056e97x14",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.krapperup.se"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "SE",
                  "country_name" : "Sweden",
                  "lat" : 56.24361,
                  "lng" : 12.54194,
                  "name" : "Nyhamnsläge"
               },
               "geonames_id" : 2687731
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Gyllenstiernska Krapperup Foundation"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Gyllenstiernska Krapperupsstiftelsen"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Krapperup Slott & Gyllenstiernska Krapperupstiftelsen"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Krapperupsslott"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 445,
            "id" : "fr",
            "title" : "France"
         },
         {
            "count" : 279,
            "id" : "us",
            "title" : "United States"
         },
         {
            "count" : 128,
            "id" : "de",
            "title" : "Germany"
         },
         {
            "count" : 68,
            "id" : "cn",
            "title" : "China"
         },
         {
            "count" : 57,
            "id" : "gb",
            "title" : "United Kingdom"
         },
         {
            "count" : 48,
            "id" : "ca",
            "title" : "Canada"
         },
         {
            "count" : 31,
            "id" : "au",
            "title" : "Australia"
         },
         {
            "count" : 26,
            "id" : "in",
            "title" : "India"
         },
         {
            "count" : 25,
            "id" : "it",
            "title" : "Italy"
         },
         {
            "count" : 23,
            "id" : "es",
            "title" : "Spain"
         }
      ],
      "statuses" : [
         {
            "count" : 1572,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 469,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 360,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 232,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 192,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 123,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 89,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 73,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 34,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 1572,
   "time_taken" : 3
}

Example

Search for records created before or after a specific date by using a wildcard in the range query.

curl 'https://api.ror.org/v2/organizations?query.advanced=admin.created.date:{*%20TO%202019-12-31}' | json_pp

The response is a list of active records created before 2019-12-31.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2019-02-17",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1973,
         "external_ids" : [
            {
               "all" : [
                  "grid.503427.7"
               ],
               "preferred" : "grid.503427.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q4646723"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/055srzn87",
         "links" : [
            {
               "type" : "website",
               "value" : "https://9to5.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/9to5"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 39.742493,
                  "lng" : -104.973055,
                  "name" : "Denver"
               },
               "geonames_id" : 5419384
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "9to5"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "National Association of Working Women"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.473374.0"
               ],
               "preferred" : "grid.473374.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2223 5159"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/04qnjas92",
         "links" : [
            {
               "type" : "website",
               "value" : "http://mafff.gov.to/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "TO",
                  "country_name" : "Tonga",
                  "lat" : -21.140152,
                  "lng" : -175.17839,
                  "name" : "Nuku‘alofa"
               },
               "geonames_id" : 4032402
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "MAFFF"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ministry of Agriculture and Forestry and Food"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.415035.6"
               ],
               "preferred" : "grid.415035.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 4679 0853"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/0321tdt28",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cittadellasalute.to.it/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.063723,
                  "lng" : 7.687965,
                  "name" : "Turin"
               },
               "geonames_id" : 3165524
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ospedale San Giovanni Antica Sede"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SGAS"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.432329.d"
               ],
               "preferred" : "grid.432329.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1789 4477"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/001f7a930",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.cittadellasalute.to.it/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.041268,
                  "lng" : 7.672926,
                  "name" : "Turin"
               },
               "geonames_id" : 3165524
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Azienda Ospedaliera Citta' della Salute e della Scienza di Torino"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/010d4kb47",
               "label" : "Ospedale Sant'Anna",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/048tbm396",
               "label" : "University of Turin",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1935,
         "external_ids" : [
            {
               "all" : [
                  "grid.413005.3"
               ],
               "preferred" : "grid.413005.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1760 6850"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q3631450"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00nrtez23",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cittadellasalute.to.it/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.036247,
                  "lng" : 7.674,
                  "name" : "Turin"
               },
               "geonames_id" : 3165524
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Azienda Ospedaliero Universitaria San Giovanni Battista"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/048tbm396",
               "label" : "University of Turin",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2021-09-23",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.512150.2"
               ],
               "preferred" : "grid.512150.2",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/000r0q932",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.health.gov.to/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "TO",
                  "country_name" : "Tonga",
                  "lat" : -21.15462,
                  "lng" : -175.2181,
                  "name" : "Nuku‘alofa"
               },
               "geonames_id" : 4032402
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ministry of Health"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2024-02-13",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.470222.1"
               ],
               "preferred" : "grid.470222.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 7471 9712"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30265302"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01vj6ck58",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.to.infn.it/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.07049,
                  "lng" : 7.68682,
                  "name" : "Turin"
               },
               "geonames_id" : 3165524
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "INFN Sezione di Torino"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Istituto Nazionale di Fisica Nucleare Sezione di Torino"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/005ta0471",
               "label" : "Istituto Nazionale di Fisica Nucleare",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/04387x656",
               "label" : "University of Eastern Piedmont Amadeo Avogadro",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.417126.7"
               ],
               "preferred" : "grid.417126.7",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/01nsxt963",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.asl.ivrea.to.it/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.466969,
                  "lng" : 7.872945,
                  "name" : "Ivrea"
               },
               "geonames_id" : 3175384
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ospedale Civile Di Ivrea"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.431815.a"
               ],
               "preferred" : "grid.431815.a",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/02rf8xy04",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.to-be.it/en/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.585923,
                  "lng" : 12.219667,
                  "name" : "Mogliano Veneto"
               },
               "geonames_id" : 3173314
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "2B"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.416473.3"
               ],
               "preferred" : "grid.416473.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1763 0797"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/051b9c228",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.asl102.to.it/presentosp.htm"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.066942,
                  "lng" : 7.628478,
                  "name" : "Turin"
               },
               "geonames_id" : 3165524
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ospedale Martini"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1993,
         "external_ids" : [
            {
               "all" : [
                  "grid.476041.0"
               ],
               "preferred" : "grid.476041.0",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04dneqm75",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.retina.to/index.php/en/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 53.10529,
                  "lng" : 8.841805,
                  "name" : "Bremen"
               },
               "geonames_id" : 2944388
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Augenklinik Universitätsallee"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2019-02-17",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2008,
         "external_ids" : [
            {
               "all" : [
                  "grid.501574.2"
               ],
               "preferred" : "grid.501574.2",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/03kw9kr66",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.mercantec.dk/welcome-to-mercantec"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DK",
                  "country_name" : "Denmark",
                  "lat" : 56.466104,
                  "lng" : 9.412691,
                  "name" : "Viborg"
               },
               "geonames_id" : 2610319
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Mercantec"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1997,
         "external_ids" : [
            {
               "all" : [
                  "grid.462132.0"
               ],
               "preferred" : "grid.462132.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0367 8386"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/02tn0tm63",
         "links" : [
            {
               "type" : "website",
               "value" : "http://icpees.unistra.fr/en/welcome-to-icpees/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "FR",
                  "country_name" : "France",
                  "lat" : 48.579067,
                  "lng" : 7.766466,
                  "name" : "Strasbourg"
               },
               "geonames_id" : 2973783
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ICPEES"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute of Chemistry and Processes for Energy, Environment and Health"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02cte4b68",
               "label" : "Institut de Chimie",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/00pg6eq24",
               "label" : "University of Strasbourg",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-06-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1985,
         "external_ids" : [
            {
               "all" : [
                  "grid.469864.1"
               ],
               "preferred" : "grid.469864.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q30265079"
               ],
               "preferred" : "Q30265079",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02q4yjc78",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cdsndu.org/html_ch/to_index_.html"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "CN",
                  "country_name" : "China",
                  "lat" : 39.9075,
                  "lng" : 116.39723,
                  "name" : "Beijing"
               },
               "geonames_id" : 1816670
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "International College of Defence Studies"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "International College of Defence Studies, NDU, PLA, China"
            },
            {
               "lang" : "zh",
               "types" : [
                  "label"
               ],
               "value" : "中国人民解放军国防大学国际防务学院"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1947,
         "external_ids" : [
            {
               "all" : [
                  "grid.280427.b"
               ],
               "preferred" : "grid.280427.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0434 015X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30253349"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02sjnfb25",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.versiti.org/ways-to-give/our-communities/wisconsin"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 43.03236,
                  "lng" : -88.02383,
                  "name" : "Milwaukee"
               },
               "geonames_id" : 5263045
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Versiti Blood Center of Wisconsin"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1926,
         "external_ids" : [
            {
               "all" : [
                  "grid.488631.0"
               ],
               "preferred" : "grid.488631.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 6046 2661"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/01fqh9j23",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.eehealth.org/ways-to-give/emh-foundation/about"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.926647,
                  "lng" : -87.955358,
                  "name" : "Elmhurst"
               },
               "geonames_id" : 4891010
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Elmhurst Memorial Hospital"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2005,
         "external_ids" : [
            {
               "all" : [
                  "grid.451895.4"
               ],
               "preferred" : "grid.451895.4",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/02p3nxd53",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.penny.se/welcome-to-penny---we-ar-able.html"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "SE",
                  "country_name" : "Sweden",
                  "lat" : 59.61457,
                  "lng" : 16.558141,
                  "name" : "Västerås"
               },
               "geonames_id" : 2664454
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Penny (Sweden)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1992,
         "external_ids" : [
            {
               "all" : [
                  "grid.437295.e"
               ],
               "preferred" : "grid.437295.e",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0462 9471"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q17074214"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/008v1x891",
         "links" : [
            {
               "type" : "website",
               "value" : "https://pathwaystohousing.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Pathways_to_Housing"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.7487,
                  "lng" : -73.987818,
                  "name" : "New York City"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Pathways to Housing"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1963,
         "external_ids" : [
            {
               "all" : [
                  "grid.487207.e"
               ],
               "preferred" : "grid.487207.e",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/05hqyp882",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.medskin-suwelack.com/en/welcome-to-medskin-solutions.html"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 51.986984,
                  "lng" : 7.263179,
                  "name" : "Billerbeck"
               },
               "geonames_id" : 2948944
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "MedSkin Solutions (Germany)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-06-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1810,
         "external_ids" : [
            {
               "all" : [
                  "grid.435122.3"
               ],
               "preferred" : "grid.435122.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 1385 4505"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q91068780"
               ],
               "preferred" : "Q91068780",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04mc23283",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.to.ee/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Tartu_Observatory"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "EE",
                  "country_name" : "Estonia",
                  "lat" : 58.38062,
                  "lng" : 26.72509,
                  "name" : "Tartu"
               },
               "geonames_id" : 588335
            }
         ],
         "names" : [
            {
               "lang" : "et",
               "types" : [
                  "label"
               ],
               "value" : "Tartu Observatoorium"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Tartu Observatory"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01pewsd85",
               "label" : "Estonian Academy of Sciences",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/03z77qz90",
               "label" : "University of Tartu",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "archive"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 20,
            "id" : "gb",
            "title" : "United Kingdom"
         },
         {
            "count" : 16,
            "id" : "us",
            "title" : "United States"
         },
         {
            "count" : 10,
            "id" : "it",
            "title" : "Italy"
         },
         {
            "count" : 8,
            "id" : "fr",
            "title" : "France"
         },
         {
            "count" : 3,
            "id" : "de",
            "title" : "Germany"
         },
         {
            "count" : 3,
            "id" : "ie",
            "title" : "Ireland"
         },
         {
            "count" : 3,
            "id" : "to",
            "title" : "Tonga"
         },
         {
            "count" : 2,
            "id" : "au",
            "title" : "Australia"
         },
         {
            "count" : 2,
            "id" : "ca",
            "title" : "Canada"
         },
         {
            "count" : 2,
            "id" : "nl",
            "title" : "Netherlands"
         }
      ],
      "statuses" : [
         {
            "count" : 82,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 34,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 15,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 7,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 7,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 5,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 5,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 5,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 4,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 82,
   "time_taken" : 3
}

Search all fields

The advanced query parameter allows you to perform a keyword search of all ROR record fields and sub-fields.

📘

Advanced query parameter format, all fields

https://api.ror.org/v2/organizations?query.advanced=[value]

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=%22Harvard%20University%22' | json_pp

The response returns all instances of the exact phrase "Harvard University" in all fields of all records. Note that the phrase is often found in the relationships field of ROR records for organizations that are related to Harvard University.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2024-03-13",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1636,
         "external_ids" : [
            {
               "all" : [
                  "100007229",
                  "100010520",
                  "100009802",
                  "100009868",
                  "100008548",
                  "100008549",
                  "100005724",
                  "100005578",
                  "100009116",
                  "100008036",
                  "100009345",
                  "100005668",
                  "100010952",
                  "100008024",
                  "100005487",
                  "100005473",
                  "100005293",
                  "100006075",
                  "100005915",
                  "100005469",
                  "100005650",
                  "100005678",
                  "100005692",
                  "100005802",
                  "100005856",
                  "100005893",
                  "100005941",
                  "100006007",
                  "100006011",
                  "100006274",
                  "100007230",
                  "100007300",
                  "100007887",
                  "100008263",
                  "100005574",
                  "100007299",
                  "100006691",
                  "100007301",
                  "100019552"
               ],
               "preferred" : "100007229",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.38142.3c"
               ],
               "preferred" : "grid.38142.3c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1936 754X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q13371",
                  "Q5676556"
               ],
               "preferred" : "Q13371",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03vek6s52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.harvard.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Harvard_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.3751,
                  "lng" : -71.10561,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Harvard University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Harvard"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/032q5ym94",
               "label" : "Athinoula A. Martinos Center for Biomedical Imaging",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03hj6c016",
               "label" : "Berenson Allen Center for Noninvasive Brain Stimulation",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03c3r2d17",
               "label" : "Center for Astrophysics Harvard & Smithsonian",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05r3dyn47",
               "label" : "Center for Systems Biology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04wsv7966",
               "label" : "Center for Vascular Biology Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/004y4rj95",
               "label" : "Gordon Center for Medical Imaging",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04kj1hn59",
               "label" : "Harvard Stem Cell Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/006v7bf86",
               "label" : "Harvard University Press",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/053tmcn30",
               "label" : "MIT-Harvard Center for Ultracold Atoms",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/053r20n13",
               "label" : "Ragon Institute of MGH, MIT and Harvard",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04r5ess67",
               "label" : "Sleep and Human Health Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04pvzz946",
               "label" : "The NSF AI Institute for Artificial Intelligence and Fundamental Interactions",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05xsxgs79",
               "label" : "Arnold Arboretum",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/059cpzx98",
               "label" : "Harvard Forest Long Term Ecological Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/008cfmj78",
               "label" : "Wyss Institute for Biologically Inspired Engineering",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03pvyf116",
               "label" : "Dana-Farber/Harvard Cancer Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05b0g2v72",
               "label" : "Real Colegio Complutense",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04drvxt59",
               "label" : "Beth Israel Deaconess Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/00dvg7y05",
               "label" : "Boston Children's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05xckek43",
               "label" : "Boston IVF",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04rkbns44",
               "label" : "Botswana Harvard AIDS Institute Partnership",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03w44ff23",
               "label" : "Brigham and Women's Faulkner Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04b6nzv94",
               "label" : "Brigham and Women's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05a0ya142",
               "label" : "Broad Institute",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/059c3mv67",
               "label" : "Cambridge Health Alliance",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02jzgtq86",
               "label" : "Dana-Farber Cancer Institute",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01zxdeg39",
               "label" : "Harvard Pilgrim Health Care",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/00jjeh629",
               "label" : "Harvard–MIT Division of Health Sciences and Technology",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02vptss42",
               "label" : "Hebrew SeniorLife",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/044hpwe09",
               "label" : "IIT@Harvard",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/0280a3n32",
               "label" : "Joslin Diabetes Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05tby3y60",
               "label" : "Judge Baker Children's Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03mbq3y29",
               "label" : "Lahey Hospital and Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04g3dn724",
               "label" : "Massachusetts Eye and Ear Infirmary",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/002pd6e78",
               "label" : "Massachusetts General Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05par7p11",
               "label" : "Massachusetts Green High Performance Computing Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01kta7d96",
               "label" : "McLean Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03hrxmf69",
               "label" : "Newton Wellesley Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/023pf5e38",
               "label" : "Somerville Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/011dvr318",
               "label" : "Spaulding Rehabilitation Hospital",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1913,
         "external_ids" : [
            {
               "all" : [
                  "grid.446714.4"
               ],
               "preferred" : "grid.446714.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0694 1061"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1587900"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/006v7bf86",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.hup.harvard.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Harvard_University_Press"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.383016,
                  "lng" : -71.12706,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HUP"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Harvard University Press"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2024-03-13",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2024-03-13",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1990,
         "external_ids" : [
            {
               "all" : [
                  "100013721"
               ],
               "preferred" : "100013721",
               "type" : "fundref"
            },
            {
               "all" : [
                  "Q7300869"
               ],
               "preferred" : "Q7300869",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05b0g2v72",
         "links" : [
            {
               "type" : "website",
               "value" : "https://rcc.harvard.edu"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Real_Colegio_Complutense"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.3751,
                  "lng" : -71.10561,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "RCC at Harvard University"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "RCCHU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Real Colegio Complutense"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Real Colegio Complutense at Harvard University"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1980,
         "external_ids" : [
            {
               "all" : [
                  "grid.67104.34"
               ],
               "preferred" : "grid.67104.34",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0415 0102"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5676515"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01zxdeg39",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.harvardpilgrim.org/portal/page?_pageid=1391,1&_dad=portal&_schema=PORTAL"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Harvard_Pilgrim_Health_Care"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 43.002984,
                  "lng" : -71.25765,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Harvard Pilgrim Health Care"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1917,
         "external_ids" : [
            {
               "all" : [
                  "100006690",
                  "100006689"
               ],
               "preferred" : "100006690",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.280934.4"
               ],
               "preferred" : "grid.280934.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0320 631X"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/05tby3y60",
         "links" : [
            {
               "type" : "website",
               "value" : "http://jbcc.harvard.edu/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.332102,
                  "lng" : -71.110192,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Judge Baker Children's Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.416039.9"
               ],
               "preferred" : "grid.416039.9",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04r5ess67",
         "links" : [
            {
               "type" : "website",
               "value" : "https://sleep.med.harvard.edu/ext/tmanual/Institutions/Sleep_Human_Health.htm"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 35.146683,
                  "lng" : -106.56761,
                  "name" : "Albuquerque"
               },
               "geonames_id" : 5454711
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Sleep and Human Health Institute"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1996,
         "external_ids" : [
            {
               "all" : [
                  "grid.462829.3"
               ],
               "preferred" : "grid.462829.3",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04rkbns44",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.bhp.org.bw/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BW",
                  "country_name" : "Botswana",
                  "lat" : -24.65661,
                  "lng" : 25.923299,
                  "name" : "Gaborone"
               },
               "geonames_id" : 933773
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BHP"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Botswana Harvard AIDS Institute Partnership"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-12-21",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.497274.b"
               ],
               "preferred" : "grid.497274.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0627 5136"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/02vptss42",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.hebrewseniorlife.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.298473,
                  "lng" : -71.131193,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HSL"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Hebrew SeniorLife"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2022-03-17",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1872,
         "external_ids" : [
            {
               "all" : [
                  "100009403"
               ],
               "preferred" : "100009403",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0001 2293 3096"
               ],
               "preferred" : "0000 0001 2293 3096",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q568666"
               ],
               "preferred" : "Q568666",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05xsxgs79",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.arboretum.harvard.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Arnold_Arboretum"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.35843,
                  "lng" : -71.05977,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Arnold Arboretum"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Arnold Arboretum of Harvard University"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "archive"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2021-09-23",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2004,
         "external_ids" : [
            {
               "all" : [
                  "100008035"
               ],
               "preferred" : "100008035",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.511171.2"
               ],
               "preferred" : "grid.511171.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q40771227"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04kj1hn59",
         "links" : [
            {
               "type" : "website",
               "value" : "https://hsci.harvard.edu/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.3751,
                  "lng" : -71.10561,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HSCI"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Harvard Stem Cell Institute"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-12-21",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-12-20",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1952,
         "external_ids" : [
            {
               "all" : [
                  "100007877",
                  "100007878"
               ],
               "preferred" : "100007877",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.16694.3c"
               ],
               "preferred" : "grid.16694.3c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2183 9479"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1708743"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0280a3n32",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.joslin.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Joslin_Diabetes_Center"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.35843,
                  "lng" : -71.05977,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Joslin Diabetes Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1900,
         "external_ids" : [
            {
               "all" : [
                  "grid.415122.1"
               ],
               "preferred" : "grid.415122.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0378 8518"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5438132"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03w44ff23",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.brighamandwomensfaulkner.org/default.aspx#.V3tN99J97IV"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Faulkner_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.301654,
                  "lng" : -71.129055,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BWFH"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Brigham and Women's Faulkner Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Faulkner Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05wvpxv85",
               "label" : "Tufts University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1881,
         "external_ids" : [
            {
               "all" : [
                  "grid.416176.3"
               ],
               "preferred" : "grid.416176.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9957 1751"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q14715774"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03hrxmf69",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.nwh.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Newton-Wellesley_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.33285,
                  "lng" : -71.246203,
                  "name" : "Newton"
               },
               "geonames_id" : 4945283
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NWH"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Newton Cottage Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Newton Wellesley Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05wvpxv85",
               "label" : "Tufts University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1891,
         "external_ids" : [
            {
               "all" : [
                  "grid.461485.a"
               ],
               "preferred" : "grid.461485.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0101 1658"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7559973"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/023pf5e38",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.challiance.org/Locations/SomervilleHospitalcampus.aspx"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Somerville_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.390039,
                  "lng" : -71.109333,
                  "name" : "Somerville"
               },
               "geonames_id" : 4951257
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Somerville Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/059c3mv67",
               "label" : "Cambridge Health Alliance",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1999,
         "external_ids" : [
            {
               "all" : [
                  "grid.483004.b"
               ],
               "preferred" : "grid.483004.b",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/05r3dyn47",
         "links" : [
            {
               "type" : "website",
               "value" : "https://csb.mgh.harvard.edu/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.363159,
                  "lng" : -71.068734,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CSB"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Center for Systems Biology"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/002pd6e78",
               "label" : "Massachusetts General Hospital",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2021-09-23",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2015,
         "external_ids" : [
            {
               "all" : [
                  "grid.512020.4"
               ],
               "preferred" : "grid.512020.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q30625556"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/004y4rj95",
         "links" : [
            {
               "type" : "website",
               "value" : "https://gordon.mgh.harvard.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Gordon_Center_for_Medical_Imaging"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.367998,
                  "lng" : -71.0672402,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Gordon Center for Medical Imaging"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/002pd6e78",
               "label" : "Massachusetts General Hospital",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1824,
         "external_ids" : [
            {
               "all" : [
                  "100010572",
                  "100007337"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.39479.30"
               ],
               "preferred" : "grid.39479.30",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 8800 3003"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q6784269"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04g3dn724",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.masseyeandear.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Massachusetts_Eye_and_Ear_Infirmary"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.363755,
                  "lng" : -71.070775,
                  "name" : "Boston"
               },
               "geonames_id" : 4930956
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Boston Eye Infirmary"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "MEE"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Mass. Eye and Ear"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Massachusetts Eye and Ear Infirmary"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04v00sg98",
               "label" : "VA Boston Healthcare System",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1970,
         "external_ids" : [
            {
               "all" : [
                  "grid.413735.7"
               ],
               "preferred" : "grid.413735.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0475 2760"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5676651"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00jjeh629",
         "links" : [
            {
               "type" : "website",
               "value" : "http://hst.mit.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Harvard%E2%80%93MIT_Division_of_Health_Sciences_and_Technology"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.361777,
                  "lng" : -71.086911,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HST"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Harvard–MIT Division of Health Sciences and Technology"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/042nb2s44",
               "label" : "Massachusetts Institute of Technology",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1923,
         "external_ids" : [
            {
               "all" : [
                  "grid.415731.5"
               ],
               "preferred" : "grid.415731.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0725 1353"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q6473221"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03mbq3y29",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.lahey.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Lahey_Hospital_%26_Medical_Center"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.4842,
                  "lng" : -71.2047,
                  "name" : "Burlington"
               },
               "geonames_id" : 4931737
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Lahey Clinic"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Lahey Hospital and Medical Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05qwgg493",
               "label" : "Boston University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05wvpxv85",
               "label" : "Tufts University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2021-04-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.509953.3"
               ],
               "preferred" : "grid.509953.3",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/044hpwe09",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.iit.it/research/lines/iit-harvard"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.3360243,
                  "lng" : -71.1056212,
                  "name" : "Cambridge"
               },
               "geonames_id" : 4931972
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "IIT@Harvard"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/042t93s57",
               "label" : "Italian Institute of Technology",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/03vek6s52",
               "label" : "Harvard University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 40,
            "id" : "us",
            "title" : "United States"
         },
         {
            "count" : 1,
            "id" : "bw",
            "title" : "Botswana"
         }
      ],
      "statuses" : [
         {
            "count" : 41,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 17,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 14,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 5,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 2,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 2,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 1,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 41,
   "time_taken" : 174
}

🚧

Consider refining your advanced query searches

Searching all fields with the advanced query may produce more results than desired, slow the speed of the search, and affect the performance of the ROR API. We recommend searching one or more specific fields instead, as in the examples below.

Search a single field

Elastic Search field name syntax fieldname:query can be used to search within a single field. When using this syntax, fieldname must exactly match a field name in the list of All ROR fields and sub-fields, e.g., locations.geonames_details.name:Melbourne not locations:Melbourne.

📘

Advanced query parameter format, single field

https://api.ror.org/v2/organizations?query.advanced=[fieldname]:[value]

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=links.value:%22www.virginia.edu%22' | json_pp

The response is a single result with the value www.virginia.edu in a links.value field. Remember that the links field can contain multiple values.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-03",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1819,
         "external_ids" : [
            {
               "all" : [
                  "100008457",
                  "100008194",
                  "100008596",
                  "100000178",
                  "100008781",
                  "100008458",
                  "100008193",
                  "100005973"
               ],
               "preferred" : "100008457",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.27755.32"
               ],
               "preferred" : "grid.27755.32",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9136 933X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q213439"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0153tk833",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.virginia.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Virginia"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 38.02931,
                  "lng" : -78.47668,
                  "name" : "Charlottesville"
               },
               "geonames_id" : 4752031
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UVA"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Virginia"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Virginia"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de virginie"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/013zder45",
               "label" : "Virginia Coast Reserve Long Term Ecological Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/036nxkh98",
               "label" : "Carilion Roanoke Memorial Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/0212h5y77",
               "label" : "Inova Fairfax Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01krywm46",
               "label" : "University of Virginia Children's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/00wn7d965",
               "label" : "University of Virginia Health System",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02f588d44",
               "label" : "University of Virginia Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/046kb4y45",
               "label" : "University of Virginia Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/015awat24",
               "label" : "Western State Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/055a54548",
               "label" : "Beaufort Lagoon Ecosystems Long Term Ecological Research Network",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05hnkta08",
               "label" : "Santa Barbara Coastal Long Term Ecological Research",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 1,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 1,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 1,
            "id" : "education",
            "title" : "education"
         }
      ]
   },
   "number_of_results" : 1,
   "time_taken" : 19
}

Search multiple fields

Search multiple fields and form complex queries with Elasticsearch boolean operator syntax (AND, OR, NOT). Note that the Boolean operator must be surrounded by URL-encoded spaces.

📘

Advanced query parameter format, multiple fields

https://api.ror.org/v2/organizations?query.advanced=[fieldname]:[value]+[Boolean operator]+[fieldname]:[value]

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=names.value:Cornell+AND+locations.geonames_details.name:Ithaca' | json_pp

The response is a list of records with the keyword "Cornell" in a names.value field and the city "Ithaca" in the locations.geonames_details.name field. Remember that the names field can contain multiple values with different name types.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2024-03-13",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1865,
         "external_ids" : [
            {
               "all" : [
                  "100007231",
                  "100007604",
                  "100006480",
                  "100006077",
                  "100006471",
                  "100006923",
                  "100007272",
                  "100008586",
                  "100007232",
                  "100009083",
                  "100008674",
                  "100008585"
               ],
               "preferred" : "100007231",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.5386.8"
               ],
               "preferred" : "grid.5386.8",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1936 877X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q49115"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05bnh6r87",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cornell.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Cornell_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad Cornell"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/031m8s392",
               "label" : "New York Sea Grant",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03ycy6g75",
               "label" : "New York Space Grant Consortium",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00j52pq61",
               "label" : "New York State College of Agriculture & Life Sciences",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04r17kf39",
               "label" : "New York State College of Veterinary Medicine",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00zg6dt46",
               "label" : "New York State School of Industrial and Labor Relations",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/047g2xp14",
               "label" : "New York State University College of Human Ecology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02r109517",
               "label" : "Weill Cornell Medicine",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00k86w020",
               "label" : "Cornell Lab of Ornithology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03h0qhk21",
               "label" : "Cornell Atkinson Center for Sustainability",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04pw1zg89",
               "label" : "PARADIM",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/012qsrr25",
               "label" : "Cornell University Agricultural Experiment Station",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02sp1z620",
               "label" : "Burke Medical Research Institute",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04dnsc767",
               "label" : "Burke Rehabilitation Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/027zt9171",
               "label" : "Houston Methodist",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/035a72598",
               "label" : "Lincoln Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01skxn174",
               "label" : "Lower Manhattan Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02yrq0923",
               "label" : "Memorial Sloan Kettering Cancer Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/016m8pd54",
               "label" : "Morgan Stanley Children's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03f91xw18",
               "label" : "Museum of the Earth",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01j17xg39",
               "label" : "New York Hospital Queens",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04929s478",
               "label" : "NewYork–Presbyterian Brooklyn Methodist Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03gzbrs57",
               "label" : "NewYork–Presbyterian Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05dvpaj72",
               "label" : "The Rogosin Institute",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05v5hg569",
               "label" : "Weill Cornell Medical College in Qatar",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/00yzb1d91",
               "label" : "Wyckoff Heights Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/00mkh7345",
               "label" : "Hubbard Brook Long Term Ecological Research",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05cshtm26",
               "label" : "Great Lakes Research Consortium",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2024-03-13",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2024-03-13",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1880,
         "external_ids" : [
            {
               "all" : [
                  "100011622"
               ],
               "preferred" : "100011622",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0001 2170 7652"
               ],
               "preferred" : "0000 0001 2170 7652",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q45134801"
               ],
               "preferred" : "Q45134801",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/012qsrr25",
         "links" : [
            {
               "type" : "website",
               "value" : "https://cals.cornell.edu/agricultural-experiment-station"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/New_York_State_Agricultural_Experiment_Station"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CUAES"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell AES"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell AgriTech"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell University Agricultural Experiment Station"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-07-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1915,
         "external_ids" : [
            {
               "all" : [
                  "100017754"
               ],
               "preferred" : "100017754",
               "type" : "fundref"
            },
            {
               "all" : [
                  "0000 0004 1219 4439"
               ],
               "preferred" : "0000 0004 1219 4439",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q2997535"
               ],
               "preferred" : "Q2997535",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00k86w020",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.birds.cornell.edu"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_Lab_of_Ornithology"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CLO"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Lab of Ornithology"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "The Cornell Lab of Ornithology"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-09-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-09-14",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [],
         "id" : "https://ror.org/032bgnz47",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.chess.cornell.edu"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CHESS"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "CHESS - Cornell High Energy Synchrotron Source"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell High Energy Synchrotron Source"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell High Energy Synchrotron Source (CHESS)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2023-08-17",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-12-20",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2010,
         "external_ids" : [
            {
               "all" : [
                  "100018190",
                  "100013044"
               ],
               "preferred" : "100018190",
               "type" : "fundref"
            },
            {
               "all" : [
                  "Q4815910"
               ],
               "preferred" : "Q4815910",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03h0qhk21",
         "links" : [
            {
               "type" : "website",
               "value" : "https://atkinson.cornell.edu"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Atkinson_Center_for_a_Sustainable_Future"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Atkinson Center for a Sustainable Future"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Atkinson Center for Sustainability"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-06-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1925,
         "external_ids" : [
            {
               "all" : [
                  "grid.507858.7"
               ],
               "preferred" : "grid.507858.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q5171563"
               ],
               "preferred" : "Q5171563",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/047g2xp14",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.human.cornell.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_University_College_of_Human_Ecology"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44063,
                  "lng" : -76.49661,
                  "name" : "Ithaca"
               },
               "geonames_id" : 5122432
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell University College of Human Ecology"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HumEc"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New York State University College of Human Ecology"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/01q1z8k08",
               "label" : "State University of New York",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 6,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 6,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 3,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 3,
            "id" : "facility",
            "title" : "facility"
         }
      ]
   },
   "number_of_results" : 6,
   "time_taken" : 46
}

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=names.value:Cornell+NOT+locations.geonames_details.name:Ithaca' | json_pp

The response is a list of records with the keyword "Cornell" in a names.value field without the city "Ithaca" in the locations.geonames_details.name field. Remember that the names field can contain multiple different values with different name types.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-10-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1853,
         "external_ids" : [
            {
               "all" : [
                  "100013072"
               ],
               "preferred" : "100013072",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.254690.c"
               ],
               "preferred" : "grid.254690.c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0436 344X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5171517"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01wvxpc32",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cornellcollege.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_College"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.92195,
                  "lng" : -91.41684,
                  "name" : "Mount Vernon"
               },
               "geonames_id" : 4868251
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell College"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2023-05-25",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1989,
         "external_ids" : [
            {
               "all" : [
                  "100007273",
                  "100020424"
               ],
               "preferred" : "100020424",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.471410.7"
               ],
               "preferred" : "grid.471410.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2179 7643"
               ],
               "preferred" : "0000 0001 2179 7643",
               "type" : "isni"
            },
            {
               "all" : [
                  "Q3567094"
               ],
               "preferred" : "Q3567094",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02r109517",
         "links" : [
            {
               "type" : "website",
               "value" : "https://weill.cornell.edu"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Weill_Cornell_Medicine"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.71427,
                  "lng" : -74.00597,
                  "name" : "New York"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "WCM"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Weill Cornell Medicine"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/03zjqec80",
               "label" : "Hospital for Special Surgery",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1968,
         "external_ids" : [
            {
               "all" : [
                  "grid.434882.1"
               ],
               "preferred" : "grid.434882.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0481 8993"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30256999"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04cx6n327",
         "links" : [
            {
               "type" : "website",
               "value" : "https://cornellscott.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.29773,
                  "lng" : -72.939067,
                  "name" : "New Haven"
               },
               "geonames_id" : 4839366
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CSHHC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Scott-Hill Health Center"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1914,
         "external_ids" : [
            {
               "all" : [
                  "grid.486913.1"
               ],
               "preferred" : "grid.486913.1",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/05snsev90",
         "links" : [
            {
               "type" : "website",
               "value" : "http://sullivancce.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.786391,
                  "lng" : -74.778157,
                  "name" : "Liberty"
               },
               "geonames_id" : 5124323
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CCESC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Cooperative Extension Sullivan County"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1917,
         "external_ids" : [
            {
               "all" : [
                  "grid.448516.a"
               ],
               "preferred" : "grid.448516.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2222 496X"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/0581e0971",
         "links" : [
            {
               "type" : "website",
               "value" : "http://ccesuffolk.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.920332,
                  "lng" : -72.667168,
                  "name" : "Riverhead"
               },
               "geonames_id" : 5133926
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CCE"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Cooperative Extension of Suffolk County"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.486908.b"
               ],
               "preferred" : "grid.486908.b",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/055hhfr85",
         "links" : [
            {
               "type" : "website",
               "value" : "http://ccejefferson.org"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 43.972889,
                  "lng" : -75.894944,
                  "name" : "Watertown"
               },
               "geonames_id" : 5143396
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CCE"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cornell Cooperative Extension Association of Jefferson County"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-10-20",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2001,
         "external_ids" : [
            {
               "all" : [
                  "100019460"
               ],
               "preferred" : "100019460",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.416973.e"
               ],
               "preferred" : "grid.416973.e",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0582 4340"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4118834"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05v5hg569",
         "links" : [
            {
               "type" : "website",
               "value" : "http://qatar-weill.cornell.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Weill_Cornell_Medical_College_in_Qatar"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "QA",
                  "country_name" : "Qatar",
                  "lat" : 25.28545,
                  "lng" : 51.53096,
                  "name" : "Doha"
               },
               "geonames_id" : 290030
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "WCMC-Q"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Weill Cornell Medical College in Qatar"
            },
            {
               "lang" : "ar",
               "types" : [
                  "label"
               ],
               "value" : "كلية طب وايل كورنيل"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1894,
         "external_ids" : [
            {
               "all" : [
                  "grid.507859.6"
               ],
               "preferred" : "grid.507859.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0609 3519"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q50809363"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04r17kf39",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.vet.cornell.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_University_College_of_Veterinary_Medicine"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.447483,
                  "lng" : -76.464905,
                  "name" : "New York City"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell University College of Veterinary Medicine"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New York State College of Veterinary Medicine"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/01q1z8k08",
               "label" : "State University of New York",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1874,
         "external_ids" : [
            {
               "all" : [
                  "grid.507860.c"
               ],
               "preferred" : "grid.507860.c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0614 0717"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5171560"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00j52pq61",
         "links" : [
            {
               "type" : "website",
               "value" : "https://cals.cornell.edu/#"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_University_College_of_Agriculture_and_Life_Sciences"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.448292,
                  "lng" : -76.479393,
                  "name" : "New York City"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CALS"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell University College of Agriculture and Life Sciences"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New York State College of Agriculture & Life Sciences"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/01q1z8k08",
               "label" : "State University of New York",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2020-07-06",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1945,
         "external_ids" : [
            {
               "all" : [
                  "grid.507863.f"
               ],
               "preferred" : "grid.507863.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2188 4528"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5171574"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00zg6dt46",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.ilr.cornell.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cornell_University_School_of_Industrial_and_Labor_Relations"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.44851,
                  "lng" : -76.47862,
                  "name" : "New York City"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cornell University School of Industrial and Labor Relations"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ILR"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New York State School of Industrial and Labor Relations"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05bnh6r87",
               "label" : "Cornell University",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/01q1z8k08",
               "label" : "State University of New York",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 9,
            "id" : "us",
            "title" : "United States"
         },
         {
            "count" : 1,
            "id" : "qa",
            "title" : "Qatar"
         }
      ],
      "statuses" : [
         {
            "count" : 10,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 6,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 3,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 1,
            "id" : "healthcare",
            "title" : "healthcare"
         }
      ]
   },
   "number_of_results" : 10,
   "time_taken" : 14
}

Search all sub-fields of a parent field

Elasticsearch field name syntax can be used to search all sub-fields of a parent field.

📘

Advanced query parameter format, sub-fields of a parent field

https://api.ror.org/v2/organizations?query.advanced=[parent fieldname]%5c*:[value]

Note that \ characters must be URL-encoded.

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=locations.%5c*:Melbourne' | json_pp

The response is a list of records in which the term "Melbourne" appears in one of the sub-fields of the locations field.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1887,
         "external_ids" : [
            {
               "all" : [
                  "501100001780",
                  "100008690",
                  "100010552"
               ],
               "preferred" : "501100001780",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.1017.7"
               ],
               "preferred" : "grid.1017.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2163 3550"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1057890"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04ttjf776",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.rmit.edu.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/RMIT_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.806748,
                  "lng" : 144.962573,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "RMIT"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "RMIT University"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Royal Melbourne Institute of Technology University"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/039p7nx39",
               "label" : "ARC Centre of Excellence for Automated Decision-Making and Society",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03m3ca021",
               "label" : "RMIT Europe",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/004axh929",
               "label" : "RMIT Vietnam",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/010mv7n52",
               "label" : "Austin Hospital",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1964,
         "external_ids" : [
            {
               "all" : [
                  "501100001215"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.1018.8"
               ],
               "preferred" : "grid.1018.8",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2342 0938"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1478723"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01rxfrp27",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.latrobe.edu.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/La_Trobe_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.72179,
                  "lng" : 145.047909,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "La Trobe University"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/010mv7n52",
               "label" : "Austin Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/0484pjq71",
               "label" : "Box Hill Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03grnna41",
               "label" : "Royal Women's Hospital",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1916,
         "external_ids" : [
            {
               "all" : [
                  "501100001784"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.1019.9"
               ],
               "preferred" : "grid.1019.9",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0396 9544"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q180514"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04j757h98",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.vu.edu.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Victoria_University,_Australia"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.794167,
                  "lng" : 144.9,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "VU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Victoria University"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1908,
         "external_ids" : [
            {
               "all" : [
                  "501100001781",
                  "501100007916",
                  "501100001135"
               ],
               "preferred" : "501100001781",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.1027.4"
               ],
               "preferred" : "grid.1027.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0409 2862"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q787234"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/031rekg67",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.swinburne.edu.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Swinburne_University_of_Technology"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.821111,
                  "lng" : 145.038333,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Swinburne"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Swinburne University of Technology"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/014cjmc76",
               "label" : "Swinburne University of Technology Sarawak Campus",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1986,
         "external_ids" : [
            {
               "all" : [
                  "100008561"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.1056.2"
               ],
               "preferred" : "grid.1056.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2224 8486"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q3151717"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05ktbsm52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.burnet.edu.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Burnet_Institute"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.845778,
                  "lng" : 144.984225,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Burnet Institute"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02bfwt286",
               "label" : "Monash University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01ej9dk98",
               "label" : "University of Melbourne",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1871,
         "external_ids" : [
            {
               "all" : [
                  "grid.1623.6"
               ],
               "preferred" : "grid.1623.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0432 511X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7713086"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01wddqe20",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.alfredhealth.org.au/the-alfred"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/The_Alfred_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.845521,
                  "lng" : 144.981589,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "The Alfred"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "The Alfred Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04scfb908",
               "label" : "Alfred Health",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/02bfwt286",
               "label" : "Monash University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1936,
         "external_ids" : [
            {
               "all" : [
                  "501100000951"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.3263.4"
               ],
               "preferred" : "grid.3263.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 1482 3639"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5031403"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/023m51b03",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cancervic.org.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Cancer_Council_Victoria"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.85177,
                  "lng" : 144.981481,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cancer Council Victoria"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1942,
         "external_ids" : [
            {
               "all" : [
                  "501100001029"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.237081.f"
               ],
               "preferred" : "grid.237081.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q2981744"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/051wnqr14",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.defence.gov.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Department_of_Defence_(Australia)"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.814,
                  "lng" : 144.879977,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Department of Defence"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04rnenb96",
               "label" : "Australian War Memorial",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05ddrvt52",
               "label" : "Defence Science and Technology Group",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/0314h5y94",
               "label" : "Australian Government",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/037mj4292",
               "label" : "Defence Materials Technology Centre (Australia)",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1871,
         "external_ids" : [
            {
               "all" : [
                  "501100002716"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.267362.4"
               ],
               "preferred" : "grid.267362.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0432 5259"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/04scfb908",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.alfred.org.au/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.845542,
                  "lng" : 144.981632,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Alfred Health"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01fcxf261",
               "label" : "Caulfield Hospital",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/013fdz725",
               "label" : "Melbourne Sexual Health Centre",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/048t93218",
               "label" : "National Trauma Research Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01wddqe20",
               "label" : "The Alfred Hospital",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1992,
         "external_ids" : [
            {
               "all" : [
                  "grid.410666.3"
               ],
               "preferred" : "grid.410666.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q30253730"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/045h96a50",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.crcp.com.au/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.903612,
                  "lng" : 145.132796,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CRC for Polymers"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Cooperative Research Centre for Polymers"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1970,
         "external_ids" : [
            {
               "all" : [
                  "grid.410668.d"
               ],
               "preferred" : "grid.410668.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 1520 3271"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7391139"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00vqhxg21",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.smec.com/en_au"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/SMEC_Holdings"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.820874,
                  "lng" : 144.949729,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "SMEC (Australia)"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Snowy Mountains Engineering Corporation"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1998,
         "external_ids" : [
            {
               "all" : [
                  "grid.410684.f"
               ],
               "preferred" : "grid.410684.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0456 4276"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30253737"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/009k7c907",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.nh.org.au/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.651752,
                  "lng" : 145.014852,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Northern Health"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05mjmsc11",
               "label" : "Northern Hospital",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1893,
         "external_ids" : [
            {
               "all" : [
                  "grid.413105.2"
               ],
               "preferred" : "grid.413105.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 8606 2560"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7595606"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/001kjn539",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.svhm.org.au/Pages/Home.aspx"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/St_Vincent%27s_Hospital,_Melbourne"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.807,
                  "lng" : 144.975,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "St Vincent's Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/012nkbb42",
               "label" : "St Vincent's Health",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/02k3cxs74",
               "label" : "St Vincents Institute of Medical Research",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01ej9dk98",
               "label" : "University of Melbourne",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.413901.e"
               ],
               "preferred" : "grid.413901.e",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0706 710X"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/046gme853",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.monashhealth.org/page/Dandenong"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.976302,
                  "lng" : 145.217828,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Dandenong Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02t1bej08",
               "label" : "Monash Health",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1941,
         "external_ids" : [
            {
               "all" : [
                  "grid.413976.e"
               ],
               "preferred" : "grid.413976.e",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0645 3457"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/04dhg0348",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.austin.org.au/heidelberg-repatriation-hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.754771,
                  "lng" : 145.047716,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Heidelberg Repatriation Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05dbj6g52",
               "label" : "Austin Health",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1882,
         "external_ids" : [
            {
               "all" : [
                  "grid.414094.c"
               ],
               "preferred" : "grid.414094.c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0162 7225"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4823132"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/010mv7n52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.austin.org.au/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Austin_Hospital,_Melbourne"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.7564,
                  "lng" : 145.0584,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Austin Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05dbj6g52",
               "label" : "Austin Health",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/01rxfrp27",
               "label" : "La Trobe University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04ttjf776",
               "label" : "RMIT University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01ej9dk98",
               "label" : "University of Melbourne",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1928,
         "external_ids" : [
            {
               "all" : [
                  "grid.414298.2"
               ],
               "preferred" : "grid.414298.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0447 1141"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q14685907"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03gbbyk68",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.health-first.org/hospitals_services/hrmc/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Holmes_Regional_Medical_Center"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 28.08787,
                  "lng" : -80.614351,
                  "name" : "Melbourne"
               },
               "geonames_id" : 4163971
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HRMC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Holmes Regional Medical Center"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1956,
         "external_ids" : [
            {
               "all" : [
                  "100009717"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.414366.2"
               ],
               "preferred" : "grid.414366.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0379 3501"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/00vyyx863",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.easternhealth.org.au/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.814592,
                  "lng" : 145.11842,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Eastern Health"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/0484pjq71",
               "label" : "Box Hill Hospital",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1956,
         "external_ids" : [
            {
               "all" : [
                  "grid.414580.c"
               ],
               "preferred" : "grid.414580.c",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0459 2144"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4951532"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0484pjq71",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.easternhealth.org.au/locations/box-hill-hospital"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Box_Hill_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.812946,
                  "lng" : 145.118255,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Box Hill Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/00vyyx863",
               "label" : "Eastern Health",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/02czsnj07",
               "label" : "Deakin University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/01rxfrp27",
               "label" : "La Trobe University",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02bfwt286",
               "label" : "Monash University",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1904,
         "external_ids" : [
            {
               "all" : [
                  "grid.414738.d"
               ],
               "preferred" : "grid.414738.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q5430309"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01cw77n16",
         "links" : [
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Fairfield_Infectious_Diseases_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AU",
                  "country_name" : "Australia",
                  "lat" : -37.788014,
                  "lng" : 145.011292,
                  "name" : "Melbourne"
               },
               "geonames_id" : 2158177
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Fairfield Infectious Diseases Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Queens Memorial Infectious Diseases Hospital"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 194,
            "id" : "au",
            "title" : "Australia"
         },
         {
            "count" : 26,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 220,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 47,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 41,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 30,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 27,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 26,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 22,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 21,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 6,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 220,
   "time_taken" : 52
}

Find records with a non-null value in a field

Elasticsearch field name syntax can be used to return records that have any non-null value in a field.

📘

Advanced query parameter format, non-null values in a field

https://api.ror.org/v2/organizations?query.advanced=_exists_:[fieldname]

🚧

Null vs. empty string

Most ROR record fields that have no value are set to null, but _exists_:[fieldname] may include results with empty strings for some fields.

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=_exists_:names.lang' | json_pp

The response is a list of ROR records with at least one non-null value for a name or name variant's language.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1921,
         "external_ids" : [
            {
               "all" : [
                  "501100001822"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4299.6"
               ],
               "preferred" : "grid.4299.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2169 3852"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q299015",
                  "Q39900929"
               ],
               "preferred" : "Q299015",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03anc3s24",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.oeaw.ac.at/en/austrian-academy-of-sciences/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Austrian_Academy_of_Sciences"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "AT",
                  "country_name" : "Austria",
                  "lat" : 48.20872,
                  "lng" : 16.37739,
                  "name" : "Vienna"
               },
               "geonames_id" : 2761369
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Austrian Academy of Sciences"
            },
            {
               "lang" : "sl",
               "types" : [
                  "label"
               ],
               "value" : "Avstrijska Akademija Znanosti"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "OAW"
            },
            {
               "lang" : "hu",
               "types" : [
                  "label"
               ],
               "value" : "Osztrák Tudományos Akadémia"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Österreichische Akademie der Wissenschaften"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04jd9ff79",
               "label" : "Acoustics Research Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02gqw3a90",
               "label" : "Austrian Archeological Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/028bsh698",
               "label" : "Austrian Centre for Digital Humanities and Cultural Heritage",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02z2dfb58",
               "label" : "CeMM Research Center for Molecular Medicine",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02hwbev49",
               "label" : "Erich Schmid Institute of Materials Science",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05twjp994",
               "label" : "Gregor Mendel Institute of Molecular Plant Biology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03jvry011",
               "label" : "Institut für Kultur- und Geistes­geschichte Asiens",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02yf6ha74",
               "label" : "Institute for Comparative Media and Communication Studies",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00n0zsa28",
               "label" : "Institute for European Tort Law",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02x2v5f35",
               "label" : "Institute for Habsburg and Balkan Studies",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/009syct46",
               "label" : "Institute for Interdisciplinary Mountain Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01hbyc103",
               "label" : "Institute for Medieval Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/035gx5q08",
               "label" : "Institute for Oriental and European Archaeology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/056hzt889",
               "label" : "Institute for Quantum Optics and Quantum Information Innsbruck",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/016d0n234",
               "label" : "Institute for Social Anthropology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/009tscw31",
               "label" : "Institute for Urban and Regional Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00gf51y12",
               "label" : "Institute for the Study of Ancient Culture",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03phzkx10",
               "label" : "Institute of Culture Studies and Theatre History",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/039shy520",
               "label" : "Institute of High Energy Physics",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/007bwhe79",
               "label" : "Institute of History of Art and Musicology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/053jgsp62",
               "label" : "Institute of Iranian Studies",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01zqrxf85",
               "label" : "Institute of Molecular Biotechnology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00dw5zk55",
               "label" : "Institute of Technology Assessment",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05a94k872",
               "label" : "Johann Radon Institute for Computational and Applied Mathematics",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/002w0jp71",
               "label" : "Space Research Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05kdjqf72",
               "label" : "Stefan Meyer Institute for Subatomic Physics",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/014cpn338",
               "label" : "Vienna Center for Quantum Science and Technology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04ycden15",
               "label" : "Vienna Institute of Demography",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1924,
         "external_ids" : [
            {
               "all" : [
                  "501100004195"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4422.0"
               ],
               "preferred" : "grid.4422.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2152 3263"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1074015"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04rdtx186",
         "links" : [
            {
               "type" : "website",
               "value" : "http://eweb.ouc.edu.cn/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Ocean_University_of_China"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "CN",
                  "country_name" : "China",
                  "lat" : 36.061225,
                  "lng" : 120.335199,
                  "name" : "Qingdao"
               },
               "geonames_id" : 1797929
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "OUC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ocean University of China"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Zhōngguó Hǎiyáng Dàxué"
            },
            {
               "lang" : "zh",
               "types" : [
                  "label"
               ],
               "value" : "中国海洋大学"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1823,
         "external_ids" : [
            {
               "all" : [
                  "501100004144"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4425.7"
               ],
               "preferred" : "grid.4425.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0368 0654"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1627967"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/04zfme737",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.ljmu.ac.uk/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Liverpool_John_Moores_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "GB",
                  "country_name" : "United Kingdom",
                  "lat" : 53.403,
                  "lng" : -2.97,
                  "name" : "Liverpool"
               },
               "geonames_id" : 2644210
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "LJMU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Liverpool John Moores University"
            },
            {
               "lang" : "cy",
               "types" : [
                  "label"
               ],
               "value" : "Prifysgol John Moores, Lerpwl"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02h67vt10",
               "label" : "Aintree University Hospitals NHS Foundation Trust",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04z61sd03",
               "label" : "Alder Hey Children's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/000849h34",
               "label" : "Liverpool Heart and Chest Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04q5r0746",
               "label" : "Liverpool Womens NHS Foundation Trust",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1938,
         "external_ids" : [
            {
               "all" : [
                  "grid.4463.5"
               ],
               "preferred" : "grid.4463.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0558 8585"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q550263"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02qs84g94",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.unipi.gr/unipi/en/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Piraeus"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "GR",
                  "country_name" : "Greece",
                  "lat" : 37.941541,
                  "lng" : 23.652981,
                  "name" : "Piraeus"
               },
               "geonames_id" : 255274
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Piraeus"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université du pirée"
            },
            {
               "lang" : "el",
               "types" : [
                  "label"
               ],
               "value" : "Πανεπιστήμιο Πειραιώς"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1990,
         "external_ids" : [
            {
               "all" : [
                  "grid.4466.0"
               ],
               "preferred" : "grid.4466.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0578 5482"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1054324"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03c44v465",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.poliba.it/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Polytechnic_University_of_Bari"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 41.109068,
                  "lng" : 16.878364,
                  "name" : "Bari"
               },
               "geonames_id" : 3182351
            }
         ],
         "names" : [
            {
               "lang" : "it",
               "types" : [
                  "label"
               ],
               "value" : "Politecnico di Bari"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Polytechnic University of Bari"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "École Polytechnique de Bari"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/022hq6c49",
               "label" : "INFN Sezione di Bari",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2005,
         "external_ids" : [
            {
               "all" : [
                  "501100005075"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4494.d"
               ],
               "preferred" : "grid.4494.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9558 4598"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q2057113"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03cv38k47",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.umcg.nl/EN"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/University_Medical_Center_Groningen"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "NL",
                  "country_name" : "Netherlands",
                  "lat" : 53.222794,
                  "lng" : 6.574039,
                  "name" : "Groningen"
               },
               "geonames_id" : 2755251
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Groningen University Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UMCG"
            },
            {
               "lang" : "nl",
               "types" : [
                  "label"
               ],
               "value" : "Universitair Medisch Centrum Groningen"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University Medical Center Groningen"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02zyr1680",
               "label" : "Beatrix Kinderziekenhuis",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/012p63287",
               "label" : "University of Groningen",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1992,
         "external_ids" : [
            {
               "all" : [
                  "grid.4556.2"
               ],
               "preferred" : "grid.4556.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0493 9031"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q251061"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03e8s1d88",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.pik-potsdam.de/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Potsdam_Institute_for_Climate_Impact_Research"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.381282,
                  "lng" : 13.064152,
                  "name" : "Potsdam"
               },
               "geonames_id" : 2852458
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "PIK"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Potsdam Institute for Climate Impact Research"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Potsdam-Institut für Klimafolgenforschung"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01n6r0e97",
               "label" : "Leibniz Association",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1881,
         "external_ids" : [
            {
               "all" : [
                  "501100000837",
                  "501100007882",
                  "501100004293"
               ],
               "preferred" : "501100000837",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4563.4"
               ],
               "preferred" : "grid.4563.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1936 8868"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q472316"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01ee9ar58",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.nottingham.ac.uk/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Nottingham"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "GB",
                  "country_name" : "United Kingdom",
                  "lat" : 52.938067,
                  "lng" : -1.196703,
                  "name" : "Nottingham"
               },
               "geonames_id" : 2641170
            }
         ],
         "names" : [
            {
               "lang" : "cy",
               "types" : [
                  "label"
               ],
               "value" : "Prifysgol Nottingham"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Nottingham"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/045g6w049",
               "label" : "Eminate (United Kingdom)",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04gycm791",
               "label" : "MRC Institute of Hearing Research",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04mz9mt17",
               "label" : "University of Nottingham Malaysia Campus",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03y4dt428",
               "label" : "University of Nottingham Ningbo China",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05wyncb52",
               "label" : "Kings Mill Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02ppy9c89",
               "label" : "NIHR Nottingham Digestive Diseases Biomedical Research Unit",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03f5eqm42",
               "label" : "NIHR Nottingham Hearing Biomedical Research Unit",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/0022b3c04",
               "label" : "Nottingham City Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05y3qh794",
               "label" : "Nottingham University Hospitals NHS Trust",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03ap6wx93",
               "label" : "Queen's Medical Centre",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/005r9p256",
               "label" : "Royal Derby Hospital",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1952,
         "external_ids" : [
            {
               "all" : [
                  "grid.4616.5"
               ],
               "preferred" : "grid.4616.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0542 3598"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/03fs4aq04",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ippt.pan.pl/en/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "PL",
                  "country_name" : "Poland",
                  "lat" : 52.20679,
                  "lng" : 20.981253,
                  "name" : "Warsaw"
               },
               "geonames_id" : 756135
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IPPT"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IPPT PAN"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute of Fundamental Technological Research"
            },
            {
               "lang" : "pl",
               "types" : [
                  "label"
               ],
               "value" : "Instytut Podstawowych Problemów Techniki"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01dr6c206",
               "label" : "Polish Academy of Sciences",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1863,
         "external_ids" : [
            {
               "all" : [
                  "501100006690"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4643.5"
               ],
               "preferred" : "grid.4643.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1937 0327"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q392904"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01nffqt88",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.polimi.it/en/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Polytechnic_University_of_Milan"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 45.478861,
                  "lng" : 9.228206,
                  "name" : "Milan"
               },
               "geonames_id" : 3173435
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Politecnico di Milano"
            },
            {
               "lang" : "en",
               "types" : [
                  "label"
               ],
               "value" : "Polytechnic University of Milan"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "École Polytechnique de Milan"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04w4m6z96",
               "label" : "INFN Sezione di Milano",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1224,
         "external_ids" : [
            {
               "all" : [
                  "100007195",
                  "100009052"
               ],
               "preferred" : "100007195",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4691.a"
               ],
               "preferred" : "grid.4691.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0790 385X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q691851"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05290cv24",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.unina.it/index.jsp"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Naples_Federico_II"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 40.847222,
                  "lng" : 14.256944,
                  "name" : "Naples"
               },
               "geonames_id" : 3172394
            }
         ],
         "names" : [
            {
               "lang" : "ca",
               "types" : [
                  "label"
               ],
               "value" : "Universitat de Nàpols Frederic II"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Naples Federico II"
            },
            {
               "lang" : "it",
               "types" : [
                  "label"
               ],
               "value" : "Università degli Studi di Napoli Federico II"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Universität Neapel Federico II"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de Naples - Frédéric-II"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/055cpj147",
               "label" : "Centro Interuniversitario di Ricerca sui Peptidi Bioattivi",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02jr6tp70",
               "label" : "Federico II University Hospital",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/015kcdd40",
               "label" : "INFN Sezione di Napoli",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1974,
         "external_ids" : [
            {
               "all" : [
                  "grid.4709.a"
               ],
               "preferred" : "grid.4709.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0495 846X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q695267"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03mstc592",
         "links" : [
            {
               "type" : "website",
               "value" : "http://embl.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/European_Molecular_Biology_Laboratory"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 49.384549,
                  "lng" : 8.711315,
                  "name" : "Heidelberg"
               },
               "geonames_id" : 2907911
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "EMBL"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "European Molecular Biology Laboratory"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Europäisches Laboratorium für Molekularbiologie"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02catss52",
               "label" : "European Bioinformatics Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01zjc6908",
               "label" : "European Molecular Biology Laboratory",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01yr73893",
               "label" : "European Molecular Biology Laboratory",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/050589e39",
               "label" : "European Molecular Biology Laboratory",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/010jaxs89",
               "label" : "European Molecular Biology Laboratory",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00yx5cw48",
               "label" : "EMBL Australia",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1971,
         "external_ids" : [
            {
               "all" : [
                  "grid.4819.4"
               ],
               "preferred" : "grid.4819.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0704 7467"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1622145"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00gzkxz88",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.hswt.de/en.html"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Hochschule_Weihenstephan-Triesdorf"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 48.3957,
                  "lng" : 11.7304,
                  "name" : "Freising"
               },
               "geonames_id" : 2925034
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "HSWT"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Hochschule Weihenstephan-Triesdorf"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Weihenstephan-Triesdorf University of Applied Sciences"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1614,
         "external_ids" : [
            {
               "all" : [
                  "501100001721",
                  "501100001903"
               ],
               "preferred" : "501100001721",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4830.f"
               ],
               "preferred" : "grid.4830.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0407 1981"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q850730",
                  "Q2303629"
               ],
               "preferred" : "Q850730",
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/012p63287",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.rug.nl/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Groningen"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "NL",
                  "country_name" : "Netherlands",
                  "lat" : 53.219443,
                  "lng" : 6.562966,
                  "name" : "Groningen"
               },
               "geonames_id" : 2755251
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Academia Groningana"
            },
            {
               "lang" : "nl",
               "types" : [
                  "label"
               ],
               "value" : "Rijksuniversiteit Groningen"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Groningen"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04kf5kc54",
               "label" : "Netherlands Interdisciplinary Demographic Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03cv38k47",
               "label" : "University Medical Center Groningen",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1964,
         "external_ids" : [
            {
               "all" : [
                  "100007626"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4836.9"
               ],
               "preferred" : "grid.4836.9",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0633 9072"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7727247"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0249v7n71",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.sztaki.hu/?en"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/The_Computer_and_Automation_Research_Institute,_Hungarian_Academy_of_Sciences"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "HU",
                  "country_name" : "Hungary",
                  "lat" : 47.478417,
                  "lng" : 19.05215,
                  "name" : "Budapest"
               },
               "geonames_id" : 3054643
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Computer and Automation Research Institute"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute for Computer Science and Control"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "MTA SZTAKI"
            },
            {
               "lang" : "hu",
               "types" : [
                  "label"
               ],
               "value" : "Magyar Tudományos Akadémia Számítástechnikai és Automatizálási Kutatóintézete"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/02ks8qq67",
               "label" : "Hungarian Academy of Sciences",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1950,
         "external_ids" : [
            {
               "all" : [
                  "501100007259"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.4905.8"
               ],
               "preferred" : "grid.4905.8",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0635 7705"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7383690"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02mw21745",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.irb.hr/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Ru%C4%91er_Bo%C5%A1kovi%C4%87_Institute"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "HR",
                  "country_name" : "Croatia",
                  "lat" : 45.829695,
                  "lng" : 15.988489,
                  "name" : "Zagreb"
               },
               "geonames_id" : 3186886
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IRB"
            },
            {
               "lang" : "hr",
               "types" : [
                  "label"
               ],
               "value" : "Institut Ruđer Bošković"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "RBI"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Rudjer Boskovic Institute"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-04-06",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1995,
         "external_ids" : [
            {
               "all" : [
                  "grid.4947.e"
               ],
               "preferred" : "grid.4947.e",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1760 8629"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/02edavb98",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.arpa.emr.it/dettaglio_generale.asp?id=2711"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "IT",
                  "country_name" : "Italy",
                  "lat" : 44.650754,
                  "lng" : 10.925317,
                  "name" : "Modena"
               },
               "geonames_id" : 3173331
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ARPA"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Agenzia Regionale Prevenzione e Ambiente della Regione Emilia-Romagna"
            },
            {
               "lang" : "en",
               "types" : [
                  "label"
               ],
               "value" : "Regional Agency for Environmental Protection in the Emilia-Romagna region"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1950,
         "external_ids" : [
            {
               "all" : [
                  "grid.4987.2"
               ],
               "preferred" : "grid.4987.2",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/01j5n9f07",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.aeki.kfki.hu/?lang=en"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "HU",
                  "country_name" : "Hungary",
                  "lat" : 47.487898,
                  "lng" : 18.961522,
                  "name" : "Budapest"
               },
               "geonames_id" : 3054643
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "AEKI"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "AERI"
            },
            {
               "lang" : "hu",
               "types" : [
                  "label"
               ],
               "value" : "Atomenergia Kutatóintézet"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Atomic Energy Research Institute"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute for Atomic Energy Research"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05wswj918",
               "label" : "Centre for Energy Research",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1976,
         "external_ids" : [
            {
               "all" : [
                  "501100001835"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.5012.6"
               ],
               "preferred" : "grid.5012.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0481 6099"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1137652"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02jz4aj89",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.maastrichtuniversity.nl/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Maastricht_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "NL",
                  "country_name" : "Netherlands",
                  "lat" : 50.845833,
                  "lng" : 5.687222,
                  "name" : "Maastricht"
               },
               "geonames_id" : 2751283
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Maastricht University"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UM"
            },
            {
               "lang" : "nl",
               "types" : [
                  "label"
               ],
               "value" : "Universiteit Maastricht"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01qavk531",
               "label" : "Catharina Ziekenhuis",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02d9ce178",
               "label" : "Maastricht University Medical Centre",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02x6rcb77",
               "label" : "Máxima Medisch Centrum",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1920,
         "external_ids" : [
            {
               "all" : [
                  "grid.5098.4"
               ],
               "preferred" : "grid.5098.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2286 8650"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1029504"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/017ph0934",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.unwe.bg/en"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_National_and_World_Economy"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "BG",
                  "country_name" : "Bulgaria",
                  "lat" : 42.650833,
                  "lng" : 23.348611,
                  "name" : "Sofia"
               },
               "geonames_id" : 727011
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Karl Marx Higher Institute of Economics"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UNWE"
            },
            {
               "lang" : "tr",
               "types" : [
                  "label"
               ],
               "value" : "Ulusal ve Uluslararası Ekonomi Üniversitesi"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of National and World Economy"
            },
            {
               "lang" : "bg",
               "types" : [
                  "label"
               ],
               "value" : "Университет за национално и световно стопанство"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 4073,
            "id" : "cn",
            "title" : "China"
         },
         {
            "count" : 3643,
            "id" : "jp",
            "title" : "Japan"
         },
         {
            "count" : 1875,
            "id" : "ru",
            "title" : "Russia"
         },
         {
            "count" : 1357,
            "id" : "de",
            "title" : "Germany"
         },
         {
            "count" : 1272,
            "id" : "kr",
            "title" : "South Korea"
         },
         {
            "count" : 1012,
            "id" : "in",
            "title" : "India"
         },
         {
            "count" : 936,
            "id" : "fr",
            "title" : "France"
         },
         {
            "count" : 695,
            "id" : "us",
            "title" : "United States"
         },
         {
            "count" : 629,
            "id" : "ca",
            "title" : "Canada"
         },
         {
            "count" : 598,
            "id" : "es",
            "title" : "Spain"
         }
      ],
      "statuses" : [
         {
            "count" : 26956,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 10384,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 4992,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 2922,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 2408,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 2024,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 1891,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 1529,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 809,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 26956,
   "time_taken" : 17
}

Paging and filtering

Search results from the advanced query parameter are paginated and can be filtered by status, type, country code, and country name. The all_status parameter can also be appended to advanced query parameter searches in order to retrieve inactive and withdrawn records as well as active records. See Paging and Filtering for more information.

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=names.lang:es&filter=locations.geonames_details.country_code:US&all_status&page=12' | json_pp

The response is the 12th page of a list of active, inactive, and withdrawn records for research organizations in the U.S. with at least one Spanish-language name.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-03",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1801,
         "external_ids" : [
            {
               "all" : [
                  "100008899",
                  "100006833",
                  "100010557",
                  "100005912"
               ],
               "preferred" : "100008899",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.254567.7"
               ],
               "preferred" : "grid.254567.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9075 106X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1024426"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02b6qw903",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sc.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_South_Carolina"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 34.00071,
                  "lng" : -81.03481,
                  "name" : "Columbia"
               },
               "geonames_id" : 4575352
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "USC"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Carolina del Sur"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of South Carolina"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de caroline du sud"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/03rtgjq94",
               "label" : "University of South Carolina System",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/052dmyg58",
               "label" : "Greenville Memorial Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02yw7q747",
               "label" : "Palmetto Health Richland",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/03n7vd314",
               "label" : "Prisma Health",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04b7web15",
               "label" : "Wm. Jennings Bryan Dorn VA Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/052tfzs89",
               "label" : "Plum Island Ecosystems Long Term Ecological Research",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1949,
         "external_ids" : [
            {
               "all" : [
                  "100010285",
                  "100010286"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.267102.0"
               ],
               "preferred" : "grid.267102.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0448 5736"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q262663"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03jbbze48",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sandiego.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_San_Diego"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 32.71571,
                  "lng" : -117.16472,
                  "name" : "San Diego"
               },
               "geonames_id" : 5391811
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "USD"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de San Diego"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of San Diego"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de san diego"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1972,
         "external_ids" : [
            {
               "all" : [
                  "grid.280635.a"
               ],
               "preferred" : "grid.280635.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0428 7985"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q6682073"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03xyjdy64",
         "links" : [
            {
               "type" : "website",
               "value" : "http://dhs.lacounty.gov/wps/portal/dhs"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Los_Angeles_County_Department_of_Health_Services"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 34.05223,
                  "lng" : -118.24368,
                  "name" : "Los Angeles"
               },
               "geonames_id" : 5368361
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "DHS "
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Departamento de Servicios de Salud del Condado de Los Ángeles"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "LADHS"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Los Angeles County Department of Health Services"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05h4zj272",
               "label" : "Harbor–UCLA Medical Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04xzj3x20",
               "label" : "LAC+USC Medical Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03apjks92",
               "label" : "Martin Luther King, Jr. Multi-Service Ambulatory Care Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03b66rp04",
               "label" : "Olive View-UCLA Medical Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03t3q6164",
               "label" : "Rancho Los Amigos National Rehabilitation Center",
               "type" : "child"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1899,
         "external_ids" : [
            {
               "all" : [
                  "100006747",
                  "100008939"
               ],
               "preferred" : "100006747",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.263091.f"
               ],
               "preferred" : "grid.263091.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0679 2318"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1256981"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05ykr0121",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sfsu.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/San_Francisco_State_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.77493,
                  "lng" : -122.41942,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "California State University, San Francisco"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SFSU"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco State"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco State College"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco State Normal School"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco State Teachers College"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "San Francisco State University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad Estatal de San Francisco"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université d'État de san francisco"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/020qm1538",
               "label" : "California State University System",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1895,
         "external_ids" : [
            {
               "all" : [
                  "100005288"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.429888.7"
               ],
               "preferred" : "grid.429888.7",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0443 5714"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q219555"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02eysy271",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.nypl.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/New_York_Public_Library"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.71427,
                  "lng" : -74.00597,
                  "name" : "New York"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Biblioteca Pública de Nueva York"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NYPL"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "New York Public Library"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "archive"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1875,
         "external_ids" : [
            {
               "all" : [
                  "grid.257427.1"
               ],
               "preferred" : "grid.257427.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 8874 0847"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1661325"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0511cmw96",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.iup.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Indiana_University_of_Pennsylvania"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.62146,
                  "lng" : -79.15253,
                  "name" : "Indiana"
               },
               "geonames_id" : 5194868
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IUP"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Indiana University of Pennsylvania"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Pensilvania en Indiana"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/00m2s0z68",
               "label" : "Pennsylvania State System of Higher Education",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1901,
         "external_ids" : [
            {
               "all" : [
                  "100008507"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.253547.2"
               ],
               "preferred" : "grid.253547.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2222 461X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1026846"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/001gpfp45",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.calpoly.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/California_Polytechnic_State_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 35.28275,
                  "lng" : -120.65962,
                  "name" : "San Luis Obispo"
               },
               "geonames_id" : 5392323
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cal Poly"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Cal Poly San Luis Obispo"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "California Polytechnic State University"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "California Polytechnic State University, San Luis Obispo"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad Politécnica Estatal de California"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université d'État polytechnique de californie"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/020qm1538",
               "label" : "California State University System",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/001c8fh75",
               "label" : "Cal Poly Corporation",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1847,
         "external_ids" : [
            {
               "all" : [
                  "100006462",
                  "100009621",
                  "100006499"
               ],
               "preferred" : "100006462",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.212340.6"
               ],
               "preferred" : "grid.212340.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2298 5718"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q762266"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00453a208",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.cuny.edu/index.html"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/City_University_of_New_York"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.71427,
                  "lng" : -74.00597,
                  "name" : "New York"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CUNY"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "City University of New York"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de la Ciudad de Nueva York"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de la Ville de New York"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/023qavy03",
               "label" : "Baruch College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/040hwr020",
               "label" : "Borough of Manhattan Community College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04w6mxh75",
               "label" : "Bronx Community College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/019k4jq75",
               "label" : "Brooklyn College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01gdjt538",
               "label" : "CUNY Advanced Science Research Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/04bdm2a74",
               "label" : "CUNY Energy Institute",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00jtran50",
               "label" : "CUNY School of Law",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00wmhkr98",
               "label" : "City College of New York",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02p179j44",
               "label" : "College of Staten Island",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/02ae4je14",
               "label" : "Craig Newmark Graduate School of Journalism at the City University of New York",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/002fqp272",
               "label" : "Hostos Community College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00g2xk477",
               "label" : "Hunter College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01p9rc392",
               "label" : "John Jay College of Criminal Justice",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03a4k1f37",
               "label" : "Kingsborough Community College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/05a3mwa69",
               "label" : "LaGuardia Community College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03m908832",
               "label" : "Lehman College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03we2aj97",
               "label" : "Medgar Evers College",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/021a7pw18",
               "label" : "New York City College of Technology",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03v8adn41",
               "label" : "Queens College, CUNY",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03a4vma36",
               "label" : "Queensborough Community College, CUNY",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/01d03cj21",
               "label" : "Research Foundation of The City University of New York",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00awd9g61",
               "label" : "The Graduate Center, CUNY",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/015a1ak54",
               "label" : "York College, City University of New York",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/00mkh7345",
               "label" : "Hubbard Brook Long Term Ecological Research",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1841,
         "external_ids" : [
            {
               "all" : [
                  "100009847"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.256023.0"
               ],
               "preferred" : "grid.256023.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 8755 302X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q130965"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03qnxaf80",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.fordham.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Fordham_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 40.71427,
                  "lng" : -74.00597,
                  "name" : "New York"
               },
               "geonames_id" : 5128581
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Fordham University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Fordham"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-08-16",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1908,
         "external_ids" : [
            {
               "all" : [
                  "100008289",
                  "100008290"
               ],
               "preferred" : "100008289",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.258041.a"
               ],
               "preferred" : "grid.258041.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2179 395X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q258943"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/028pmsz77",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.jmu.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/James_Madison_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 38.44957,
                  "lng" : -78.86892,
                  "name" : "Harrisonburg"
               },
               "geonames_id" : 4763231
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "JMU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "James Madison University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad James Madison"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01rzm0s68",
               "label" : "Sentara Rockingham Memorial Hospital Medical Center",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1791,
         "external_ids" : [
            {
               "all" : [
                  "100010941"
               ],
               "preferred" : "100010941",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.59062.38"
               ],
               "preferred" : "grid.59062.38",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 1936 7689"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1048898"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0155zta11",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.uvm.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Vermont"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 44.47588,
                  "lng" : -73.21207,
                  "name" : "Burlington"
               },
               "geonames_id" : 5234372
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UVM"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Vermont"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Vermont"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "University of Vermont and State Agricultural College"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université du vermont"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05k70qf45",
               "label" : "Lake Champlain Sea Grant",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03024dz78",
               "label" : "Vermont Space Grant Consortium",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/010a92934",
               "label" : "Champlain Valley Physicians Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04t2rv460",
               "label" : "Danbury Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/027t58004",
               "label" : "Eastern Maine Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/022de2f17",
               "label" : "Elizabethtown Community Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/05c6nxg16",
               "label" : "St. Mary's Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/014g11b23",
               "label" : "University of Vermont Children’s Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04cewr321",
               "label" : "University of Vermont Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/02et65004",
               "label" : "White River Junction VA Medical Center",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04pk7zz41",
               "label" : "Arctic Long Term Ecological Research",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1954,
         "external_ids" : [
            {
               "all" : [
                  "100013383"
               ],
               "preferred" : "100013383",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.265894.4"
               ],
               "preferred" : "grid.265894.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0680 266X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1285252"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03k3c2t50",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.uaa.alaska.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Alaska_Anchorage"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 61.21806,
                  "lng" : -149.90028,
                  "name" : "Anchorage"
               },
               "geonames_id" : 5879400
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UAA"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Alaska Anchorage"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Alaska Anchorage"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de l'alaska à anchorage"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01mtkd993",
               "label" : "University of Alaska System",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1996,
         "external_ids" : [
            {
               "all" : [
                  "100000266"
               ],
               "preferred" : "100000266",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.462540.1"
               ],
               "preferred" : "grid.462540.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0561 129X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1296491"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02k4pxv54",
         "links" : [
            {
               "type" : "website",
               "value" : "https://www.nga.mil/Pages/Default.aspx"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/National_Geospatial-Intelligence_Agency"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 38.78928,
                  "lng" : -77.1872,
                  "name" : "Springfield"
               },
               "geonames_id" : 4787117
            }
         ],
         "names" : [
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Agencia Nacional de Inteligencia-Geoespacial"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NGA"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NIMA"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "National Geospatial-Intelligence Agency"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "National Imagery and Mapping Agency"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/0447fe631",
               "label" : "United States Department of Defense",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1849,
         "external_ids" : [
            {
               "all" : [
                  "100017653"
               ],
               "preferred" : "100017653",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.255399.1"
               ],
               "preferred" : "grid.255399.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0674 3006"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1278221"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02ehshm78",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.emich.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Eastern_Michigan_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.24115,
                  "lng" : -83.61299,
                  "name" : "Ypsilanti"
               },
               "geonames_id" : 5015688
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "EMU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Eastern Michigan University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Michigan Oriental"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1858,
         "external_ids" : [
            {
               "all" : [
                  "100010936"
               ],
               "preferred" : "100010936",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.264038.b"
               ],
               "preferred" : "grid.264038.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2184 864X"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q93662"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/026bv4494",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sbu.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/St._Bonaventure_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.09006,
                  "lng" : -78.49419,
                  "name" : "Allegany"
               },
               "geonames_id" : 5106994
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SBU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "St. Bonaventure University"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "St. Bonaventure's College"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de San Buenaventura"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de st. bonaventure"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1888,
         "external_ids" : [
            {
               "all" : [
                  "100010938"
               ],
               "preferred" : "100010938",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.267131.0"
               ],
               "preferred" : "grid.267131.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9464 8561"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q2495907"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05xwb6v37",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.scranton.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_Scranton"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 41.40916,
                  "lng" : -75.6649,
                  "name" : "Scranton"
               },
               "geonames_id" : 5211303
            }
         ],
         "names" : [
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Scranton"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of Scranton"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de scranton"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1867,
         "external_ids" : [
            {
               "all" : [
                  "100012365"
               ],
               "preferred" : "100012365",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.257127.4"
               ],
               "preferred" : "grid.257127.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0547 4545"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1068752"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05gt1vc06",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www2.howard.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Howard_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 38.89511,
                  "lng" : -77.03637,
                  "name" : "Washington"
               },
               "geonames_id" : 4140963
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Howard University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad Howard"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01w4jxn67",
               "label" : "Howard University Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/0212h5y77",
               "label" : "Inova Fairfax Hospital",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1927,
         "external_ids" : [
            {
               "all" : [
                  "100013083"
               ],
               "preferred" : "100013083",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.252567.1"
               ],
               "preferred" : "grid.252567.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2285 5083"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q781153"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05tx3bv88",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.apsu.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Austin_Peay_State_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 36.52977,
                  "lng" : -87.35945,
                  "name" : "Clarksville"
               },
               "geonames_id" : 4613868
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "APSU"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Austin Peay State University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad Estatal Austin Peay"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1856,
         "external_ids" : [
            {
               "all" : [
                  "100010935"
               ],
               "preferred" : "100010935",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.260955.d"
               ],
               "preferred" : "grid.260955.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0000 9070 4407"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q3551657"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05309tf52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.niagara.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Niagara_University"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 43.17256,
                  "lng" : -79.03588,
                  "name" : "Lewiston"
               },
               "geonames_id" : 5124307
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Niagara University"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Niágara"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de niagara"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2022-09-21",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1862,
         "external_ids" : [
            {
               "all" : [
                  "100011411"
               ],
               "preferred" : "100011411",
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.267169.d"
               ],
               "preferred" : "grid.267169.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2293 1795"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1305521"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0043h8f16",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.usd.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_South_Dakota"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 42.77944,
                  "lng" : -96.92921,
                  "name" : "Vermillion"
               },
               "geonames_id" : 5232592
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "USD"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de Dakota del Sur"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of South Dakota"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université du Dakota du Sud"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/038v5dr76",
               "label" : "Rapid City Regional Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/04wrfcw61",
               "label" : "Sanford USD Medical Center",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "education"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 426,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 424,
            "id" : "active",
            "title" : "active"
         },
         {
            "count" : 2,
            "id" : "withdrawn",
            "title" : "withdrawn"
         }
      ],
      "types" : [
         {
            "count" : 280,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 63,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 23,
            "id" : "archive",
            "title" : "archive"
         },
         {
            "count" : 17,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 17,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 13,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 13,
            "id" : "other",
            "title" : "other"
         }
      ]
   },
   "number_of_results" : 426,
   "time_taken" : 38
}

Errors and troubleshooting

Incorrect field names

The following cases will cause a field name validation error:

  • Performing fielded searches that contain field names not listed in the table of All ROR fields and sub-fields
  • Searching a parent field name without using a wildcard operator, e.g., locations:Melbourne rather than locations.%5c*:Melbourne

A query with an incorrect field name will return an error.

curl 'https://api.ror.org/v2/organizations?query.advanced=locations.city:Melbourne' | json_pp
{
   "errors" : [
      "string 'locations.city' contains an illegal field name"
   ]
}

Multiple query parameters

Use either the query or the query.advanced parameter, not both. A query that attempts to use both will return an error.

curl 'https://api.ror.org/v2/organizations?query.advanced=names.value:Cornell&query=Ithaca' | json_pp
{
   "errors" : [
      "query and query.advanced parameters cannot be combined. please use either query OR query.advanced"
   ]
}

Non-escaped reserved characters

Elasticsearch reserved characters + - = && || > < ! ( ) { } [ ] ^ " ~ * ? : \ / used within your search terms must be escaped with a URL-encoded \ character, %5c. If these characters are not escaped, the following issues may occur:

  • Illegal field name error due to non-escaped : character, which is interpreted as a field name
  • 500 error due to non-terminated or non-escaped special characters
  • Unexpected or non-relevant results due to special characters being interpreted as query operators rather than as part of your search terms

Search strings with spaces

Elasticsearch query string syntax will treat words separated by a space as separate parts of a query. It is therefore advisable to surround multi-word search terms of the ROR API with URL-encoded quotation marks.

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=locations.geonames_details.name:San%20Francisco' | json_pp

The ROR API returns no results because the sample advanced query is looking for records whose city is exactly "San", not "San Francisco". The request terminates at the space between "San" and "Francisco".

{
   "items" : [],
   "meta" : {
      "countries" : [],
      "statuses" : [],
      "types" : []
   },
   "number_of_results" : 0,
   "time_taken" : 2
}
curl 'https://api.ror.org/v2/organizations?query.advanced=locations.geonames_details.name:%22San%20Francisco%22' | json_pp

When the term "San Francisco" is enclosed in URL-encoded quotation marks, the response is a list of research organizations whose city is "San Francisco".

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2007,
         "external_ids" : [
            {
               "all" : [
                  "grid.63387.39"
               ],
               "preferred" : "grid.63387.39",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/055aebe25",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.thecregroup.com/home.html"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.797234,
                  "lng" : -122.404899,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "CRE Group (United States)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1969,
         "external_ids" : [
            {
               "all" : [
                  "grid.242678.d"
               ],
               "preferred" : "grid.242678.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0444 7846"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q206518"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0037yf233",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.exploratorium.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Exploratorium"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.801434,
                  "lng" : -122.397561,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Exploratorium"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "archive"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1979,
         "external_ids" : [
            {
               "all" : [
                  "100008072"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.249878.8"
               ],
               "preferred" : "grid.249878.8",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0572 7110"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q5566337"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/038321296",
         "links" : [
            {
               "type" : "website",
               "value" : "http://gladstone.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Gladstone_Institutes"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.768074,
                  "lng" : -122.394455,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Gladstone Institutes"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/043mz5j54",
               "label" : "University of California, San Francisco",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1959,
         "external_ids" : [
            {
               "all" : [
                  "grid.250741.5"
               ],
               "preferred" : "grid.250741.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0627 423X"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/05783y657",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ski.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.791276,
                  "lng" : -122.434229,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Eye Research Institute"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SKERI"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco Eye Research Foundation"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Smith-Kettlewell Eye Research Institute"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1935,
         "external_ids" : [
            {
               "all" : [
                  "grid.254251.5"
               ],
               "preferred" : "grid.254251.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0401 8742"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q2974556"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03181bn25",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ccsf.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/City_College_of_San_Francisco"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.7257,
                  "lng" : -122.45111,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CCSF"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "City College of San Francisco"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco Junior College"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1855,
         "external_ids" : [
            {
               "all" : [
                  "100008913"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.267103.1"
               ],
               "preferred" : "grid.267103.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0461 8879"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1887879"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/029m7xn54",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.usfca.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/University_of_San_Francisco"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.779444,
                  "lng" : -122.451944,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "USF"
            },
            {
               "lang" : "es",
               "types" : [
                  "label"
               ],
               "value" : "Universidad de San Francisco"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of San Francisco"
            },
            {
               "lang" : "fr",
               "types" : [
                  "label"
               ],
               "value" : "Université de san francisco"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "education"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1988,
         "external_ids" : [
            {
               "all" : [
                  "100009804"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.280122.b"
               ],
               "preferred" : "grid.280122.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0498 860X"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/05p48p517",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ncire.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.782349,
                  "lng" : -122.504855,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "NCIRE"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Northern California Institute for Research and Education"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Veterans Health Research Institute "
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1959,
         "external_ids" : [
            {
               "all" : [
                  "100008495"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.280902.1"
               ],
               "preferred" : "grid.280902.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0395 6091"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/01ekg2j77",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.bsrisf.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.779362,
                  "lng" : -122.44694,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BSRI"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Blood Systems Research Institute"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.281220.b"
               ],
               "preferred" : "grid.281220.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0634 8956"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30253439"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02dktng58",
         "links" : [
            {
               "type" : "website",
               "value" : "http://scientificanalysis.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.780903,
                  "lng" : -122.399964,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ISA"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute for Scientific Analysis"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1980,
         "external_ids" : [
            {
               "all" : [
                  "grid.281572.b"
               ],
               "preferred" : "grid.281572.b",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q30253469"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03vj41343",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.eeg.com/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.771107,
                  "lng" : -122.432561,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "San Francicso Brain Research Institute & SAM Technology"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1989,
         "external_ids" : [
            {
               "all" : [
                  "grid.292482.7"
               ],
               "preferred" : "grid.292482.7",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04hjf5k52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://pivotal.io/labs"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Pivotal_Labs"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.782037,
                  "lng" : -122.403954,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Pivotal Labs"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1995,
         "external_ids" : [
            {
               "all" : [
                  "grid.295759.5"
               ],
               "preferred" : "grid.295759.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2155 5759"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7984183"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/015178j52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.wested.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/WestEd"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.782236,
                  "lng" : -122.398294,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Wested"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.410359.a"
               ],
               "preferred" : "grid.410359.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0461 9142"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/017ztfb41",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sfhealthequity.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.779044,
                  "lng" : -122.418607,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "San Francisco Department of Public Health"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1934,
         "external_ids" : [
            {
               "all" : [
                  "grid.410372.3"
               ],
               "preferred" : "grid.410372.3",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0419 2775"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7414132"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/049peqw80",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.sanfrancisco.va.gov/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/San_Francisco_VA_Medical_Center"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.78247,
                  "lng" : -122.504235,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SFVAMC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "San Francisco VA Medical Center"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "San Francisco Veterans Affairs Medical Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04g9q2h37",
               "label" : "San Francisco VA Health Care System",
               "type" : "parent"
            },
            {
               "id" : "https://ror.org/043mz5j54",
               "label" : "University of California, San Francisco",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1991,
         "external_ids" : [
            {
               "all" : [
                  "grid.413077.6"
               ],
               "preferred" : "grid.413077.6",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0434 9023"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7864122"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01t8svj65",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ucsfhealth.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/UCSF_Medical_Center"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.763242,
                  "lng" : -122.458267,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "UCSF Medical Center"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "University of California San Francisco Medical Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05yndxy10",
               "label" : "UCSF Helen Diller Family Comprehensive Cancer Center",
               "type" : "child"
            },
            {
               "id" : "https://ror.org/03hwe2705",
               "label" : "UCSF Benioff Children's Hospital",
               "type" : "related"
            },
            {
               "id" : "https://ror.org/043mz5j54",
               "label" : "University of California, San Francisco",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.414890.0"
               ],
               "preferred" : "grid.414890.0",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0461 9476"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/02fxsj090",
         "links" : [
            {
               "type" : "website",
               "value" : "https://thrive.kaiserpermanente.org/care-near-you/northern-california/sanfrancisco/#"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.782293,
                  "lng" : -122.443271,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Kaiser Permanente San Francisco Medical Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/00t60zh31",
               "label" : "Kaiser Permanente",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1969,
         "external_ids" : [
            {
               "all" : [
                  "grid.415903.a"
               ],
               "preferred" : "grid.415903.a",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q6533682"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02nqy8390",
         "links" : [
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Letterman_Army_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.776886,
                  "lng" : -122.420443,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "LAMC"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Letterman Army Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Letterman Army Medical Center"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1905,
         "external_ids" : [
            {
               "all" : [
                  "grid.416496.8"
               ],
               "preferred" : "grid.416496.8",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0440 5144"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7401259"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05h29d328",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.dignityhealth.org/saintfrancis/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Saint_Francis_Memorial_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.789229,
                  "lng" : -122.416982,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SFMH"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Saint Francis Memorial Hospital"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05c9r4685",
               "label" : "Dignity Health",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1850,
         "external_ids" : [
            {
               "all" : [
                  "grid.416732.5"
               ],
               "preferred" : "grid.416732.5",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2348 2960"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q7414040"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05j8x4n38",
         "links" : [
            {
               "type" : "website",
               "value" : "http://sfgh.ucsf.edu/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/San_Francisco_General_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.755556,
                  "lng" : -122.405,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SFGH"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "San Francisco General Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Zuckerberg San Francisco General Hospital and Trauma Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/043mz5j54",
               "label" : "University of California, San Francisco",
               "type" : "related"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1857,
         "external_ids" : [
            {
               "all" : [
                  "grid.416893.1"
               ],
               "preferred" : "grid.416893.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q7590353"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03k6q9261",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.dignityhealth.org/stmarys/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/St._Mary%27s_Medical_Center_(San_Francisco)"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 37.774206,
                  "lng" : -122.453743,
                  "name" : "San Francisco"
               },
               "geonames_id" : 5391959
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "SMMC"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "St. Mary's Hospital"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "St. Mary's Medical Center"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/05c9r4685",
               "label" : "Dignity Health",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 408,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 408,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 155,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 136,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 34,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 30,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 18,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 12,
            "id" : "archive",
            "title" : "archive"
         },
         {
            "count" : 12,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 11,
            "id" : "government",
            "title" : "government"
         }
      ]
   },
   "number_of_results" : 408,
   "time_taken" : 91
}

Uppercase and lowercase

Currently, the advanced query parameter is case-sensitive, meaning that the same search may return different results depending on the letter case of the input string. For best results, capitalize location names (Panama not panama). We may change this behavior in future to support case insensitivity for all searches.

Example

curl 'https://api.ror.org/v2/organizations?query.advanced=locations.geonames_details.name:berlin' | json_pp

The ROR API returns no results because the sample advanced query is looking for records whose city is exactly berlin.

{
  "number_of_results": 0,
  "time_taken": 1,
  "items": [],
  "meta": {
    "types": [],
    "countries": [],
    "statuses": []
  }
}

Capitalizing the name of the city returns better results.

curl 'https://api.ror.org/v2/organizations?query.advanced=locations.geonames_details.name:Berlin' | json_pp

The response includes all records whose city contains the capitalized term Berlin.

{
   "items" : [
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1925,
         "external_ids" : [
            {
               "all" : [
                  "grid.8465.f"
               ],
               "preferred" : "grid.8465.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 1931 3152"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q155228"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0050vmv35",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.diw.de/en"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/German_Institute_for_Economic_Research"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.512207,
                  "lng" : 13.388694,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "DIW Berlin"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Deutsches Institut für Wirtschaftsforschung"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "German Institute for Economic Research"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01n6r0e97",
               "label" : "Leibniz Association",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1891,
         "external_ids" : [
            {
               "all" : [
                  "grid.13652.33"
               ],
               "preferred" : "grid.13652.33",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0940 3744"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q679041"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01k5qnb77",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.rki.de/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Robert_Koch_Institute"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.539383,
                  "lng" : 13.347252,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "RKI"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Robert Koch Institute"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Robert Koch-Institut"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "government"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1904,
         "external_ids" : [
            {
               "all" : [
                  "grid.17568.3d"
               ],
               "preferred" : "grid.17568.3d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0472 5017"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q3065599"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/05jeza980",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.rolls-royce.com/"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Rolls-Royce_Deutschland"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.452759,
                  "lng" : 13.330379,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "BMW Rolls-Royce"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Rolls-Royce (Germany)"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04h08p482",
               "label" : "Rolls-Royce (United Kingdom)",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1995,
         "external_ids" : [
            {
               "all" : [
                  "grid.22859.34"
               ],
               "preferred" : "grid.22859.34",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0467 2445"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/04ejkkg63",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ecologic.eu/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.489638,
                  "lng" : 13.321406,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ecologic Institute"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "nonprofit"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1954,
         "external_ids" : [
            {
               "all" : [
                  "100009553"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.71566.33"
               ],
               "preferred" : "grid.71566.33",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0603 5458"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1005540"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03x516a66",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.bam.de/en/index.htm"
            },
            {
               "type" : "wikipedia",
               "value" : "http://en.wikipedia.org/wiki/Federal_Institute_for_Materials_Research_and_Testing"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.443204,
                  "lng" : 13.287661,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BAM"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Bundesanstalt für Materialforschung und -prüfung"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Federal Institute For Materials Research and Testing"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1992,
         "external_ids" : [
            {
               "all" : [
                  "grid.450248.f"
               ],
               "preferred" : "grid.450248.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0765 4240"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q1405041"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02be22443",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.fbh-berlin.com/welcome"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Ferdinand-Braun-Institut"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.428491,
                  "lng" : 13.534479,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "FBH"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ferdinand-Braun-Institut"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Leibniz-Institut für Höchstfrequenztechnik"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01n6r0e97",
               "label" : "Leibniz Association",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1990,
         "external_ids" : [
            {
               "all" : [
                  "grid.450790.f"
               ],
               "preferred" : "grid.450790.f",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04a95cm55",
         "links" : [
            {
               "type" : "website",
               "value" : "http://fmb-berlin.de/en"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.429327,
                  "lng" : 13.522817,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "FMB Feinwerk- und Messtechnik (Germany)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : null,
         "external_ids" : [
            {
               "all" : [
                  "grid.452299.1"
               ],
               "preferred" : "grid.452299.1",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q30296109"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/02ewzby52",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.bbib.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.460154,
                  "lng" : 13.289219,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "BBIB"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Berlin Brandenburg Institute of Advanced Biodiversity Research"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Berlin-Brandenburgisches Institut für Biodiversitätsforschung"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2011,
         "external_ids" : [
            {
               "all" : [
                  "100010447"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.452396.f"
               ],
               "preferred" : "grid.452396.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 5937 5237"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/031t5w623",
         "links" : [
            {
               "type" : "website",
               "value" : "http://dzhk.de/1/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.553305,
                  "lng" : 13.36049,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "DZHK"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Deutsches Zentrum für Herz-Kreislauf-Forschung"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "German Centre for Cardiovascular Research"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2007,
         "external_ids" : [
            {
               "all" : [
                  "grid.452523.7"
               ],
               "preferred" : "grid.452523.7",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/03qxwkk89",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.lipidomix.de/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.561585,
                  "lng" : 13.46736,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Lipidomix (Germany)"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1981,
         "external_ids" : [
            {
               "all" : [
                  "501100003106"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.452925.d"
               ],
               "preferred" : "grid.452925.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0562 3952"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q882032"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03xg85719",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.wiko-berlin.de/en/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Institute_for_Advanced_Study,_Berlin"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.491519,
                  "lng" : 13.276505,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Institute for Advanced Study"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Wissenschaftskolleg zu Berlin"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-09-23",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2010,
         "external_ids" : [
            {
               "all" : [
                  "100007651"
               ],
               "preferred" : null,
               "type" : "fundref"
            },
            {
               "all" : [
                  "grid.453935.d"
               ],
               "preferred" : "grid.453935.d",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 5906 7584"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q30296980"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/01eb22z31",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.g-risc.org/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.45494,
                  "lng" : 13.295989,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "G-RISC"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "German-Russian Interdisciplinary Science Center"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "facility"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2013,
         "external_ids" : [
            {
               "all" : [
                  "grid.460029.9"
               ],
               "preferred" : "grid.460029.9",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/04jhrwr82",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.alexianer-berlin-weissensee.de/home/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.551633,
                  "lng" : 13.466619,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "St. Joseph-Krankenhaus"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1997,
         "external_ids" : [
            {
               "all" : [
                  "grid.460088.2"
               ],
               "preferred" : "grid.460088.2",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 0547 1053"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/011zjcv36",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ukb.de/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.519382,
                  "lng" : 13.566044,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "UKB"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Unfallkrankenhaus Berlin"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1993,
         "external_ids" : [
            {
               "all" : [
                  "grid.461387.f"
               ],
               "preferred" : "grid.461387.f",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0004 0424 3130"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q4816442"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/03th00v97",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.atlanticgeneral.org/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Atlantic_General_Hospital"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "US",
                  "country_name" : "United States",
                  "lat" : 38.339611,
                  "lng" : -75.21158,
                  "name" : "Berlin"
               },
               "geonames_id" : 4348460
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Atlantic General Hospital"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "healthcare"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1994,
         "external_ids" : [
            {
               "all" : [
                  "grid.461587.9"
               ],
               "preferred" : "grid.461587.9",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/01sdfmp14",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.berlin-partner.de/en/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.506942,
                  "lng" : 13.328538,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Berlin Partner for Business and Technology"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 2002,
         "external_ids" : [
            {
               "all" : [
                  "grid.461598.7"
               ],
               "preferred" : "grid.461598.7",
               "type" : "grid"
            }
         ],
         "id" : "https://ror.org/02h988s91",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.ifdb-berlin.de/"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.442999,
                  "lng" : 13.297147,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "IFDB"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Ingenieure für das Bauwesen"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "other"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1696,
         "external_ids" : [
            {
               "all" : [
                  "grid.461623.4"
               ],
               "preferred" : "grid.461623.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2364 9994"
               ],
               "preferred" : null,
               "type" : "isni"
            }
         ],
         "id" : "https://ror.org/02fqn3k51",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.adk.de/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Academy_of_Arts,_Berlin"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.528352,
                  "lng" : 13.379724,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Academy of Arts"
            },
            {
               "lang" : "de",
               "types" : [
                  "label"
               ],
               "value" : "Die Akademie der Künste"
            }
         ],
         "relationships" : [],
         "status" : "active",
         "types" : [
            "archive"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1924,
         "external_ids" : [
            {
               "all" : [
                  "grid.461632.4"
               ],
               "preferred" : "grid.461632.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "Q29000342"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/0344nnn17",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.total.de/"
            },
            {
               "type" : "wikipedia",
               "value" : "https://en.wikipedia.org/wiki/Total_S.A."
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.520583,
                  "lng" : 13.405878,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "CFP"
            },
            {
               "lang" : null,
               "types" : [
                  "alias"
               ],
               "value" : "Compagnie française des pétroles"
            },
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Total (Germany)"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/04sk34n56",
               "label" : "Total (France)",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "company"
         ]
      },
      {
         "admin" : {
            "created" : {
               "date" : "2018-11-14",
               "schema_version" : "1.0"
            },
            "last_modified" : {
               "date" : "2021-03-17",
               "schema_version" : "2.0"
            }
         },
         "domains" : [],
         "established" : 1996,
         "external_ids" : [
            {
               "all" : [
                  "grid.461667.4"
               ],
               "preferred" : "grid.461667.4",
               "type" : "grid"
            },
            {
               "all" : [
                  "0000 0001 2166 4445"
               ],
               "preferred" : null,
               "type" : "isni"
            },
            {
               "all" : [
                  "Q191229"
               ],
               "preferred" : null,
               "type" : "wikidata"
            }
         ],
         "id" : "https://ror.org/00bpta863",
         "links" : [
            {
               "type" : "website",
               "value" : "http://www.zfl-berlin.org/zfl-english.html"
            }
         ],
         "locations" : [
            {
               "geonames_details" : {
                  "country_code" : "DE",
                  "country_name" : "Germany",
                  "lat" : 52.508746,
                  "lng" : 13.395788,
                  "name" : "Berlin"
               },
               "geonames_id" : 2950159
            }
         ],
         "names" : [
            {
               "lang" : null,
               "types" : [
                  "ror_display",
                  "label"
               ],
               "value" : "Leibniz-Zentrum für Literatur- und Kulturforschung"
            },
            {
               "lang" : null,
               "types" : [
                  "acronym"
               ],
               "value" : "ZfL"
            }
         ],
         "relationships" : [
            {
               "id" : "https://ror.org/01n6r0e97",
               "label" : "Leibniz Association",
               "type" : "parent"
            }
         ],
         "status" : "active",
         "types" : [
            "facility"
         ]
      }
   ],
   "meta" : {
      "countries" : [
         {
            "count" : 576,
            "id" : "de",
            "title" : "Germany"
         },
         {
            "count" : 4,
            "id" : "us",
            "title" : "United States"
         }
      ],
      "statuses" : [
         {
            "count" : 580,
            "id" : "active",
            "title" : "active"
         }
      ],
      "types" : [
         {
            "count" : 153,
            "id" : "company",
            "title" : "company"
         },
         {
            "count" : 105,
            "id" : "other",
            "title" : "other"
         },
         {
            "count" : 93,
            "id" : "facility",
            "title" : "facility"
         },
         {
            "count" : 93,
            "id" : "nonprofit",
            "title" : "nonprofit"
         },
         {
            "count" : 48,
            "id" : "education",
            "title" : "education"
         },
         {
            "count" : 40,
            "id" : "healthcare",
            "title" : "healthcare"
         },
         {
            "count" : 31,
            "id" : "government",
            "title" : "government"
         },
         {
            "count" : 17,
            "id" : "archive",
            "title" : "archive"
         }
      ]
   },
   "number_of_results" : 580,
   "time_taken" : 9
}

Other resources you might find helpful