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 and Schema 2.1.
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 the reserved characters [ ] { }
must be used in range queries. This is the use case they are reserved for! These characters may need to be URL-encoded or escaped depending on the language/application you are using.
Example
Search for all records of any status modified between two dates.
curl 'https://api.ror.org/v2/organizations?query.advanced=admin.last_modified.date:%5B2024-12-27%20TO%202025-01-27%5D&all_status' | json_pp
The response is a list of all records -- including active, inactive, and withdrawn records -- modified between 2024-12-27 and 2025-01-27.
{
"items" : [
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/00nnxmp87",
"links" : [
{
"type" : "website",
"value" : "https://www.pref.kagawa.lg.jp/sangi/"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "37",
"country_subdivision_name" : "Kagawa",
"lat" : 34.33333,
"lng" : 134.05,
"name" : "Takamatsu"
},
"geonames_id" : 1851100
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Kagawa Prefectural Industrial Technology Center"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "Kagawaken Sangyo Gijutsu Senta"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "カガワケン サンギョウ ギジュツ センター"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "香川県産業技術センター"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"spf.org"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/02st0pe74",
"links" : [
{
"type" : "website",
"value" : "https://www.spf.org"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "13",
"country_subdivision_name" : "Tokyo",
"lat" : 35.6895,
"lng" : 139.69171,
"name" : "Tokyo"
},
"geonames_id" : 1850147
}
],
"names" : [
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "Sasakawa Peace Foundation"
},
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "The Sasakawa Peace Foundation"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "公益財団法人笹川平和財団"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "笹川平和財団"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"nonprofit"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"j-milk.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/05814ha56",
"links" : [
{
"type" : "website",
"value" : "https://www.j-milk.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "13",
"country_subdivision_name" : "Tokyo",
"lat" : 35.6895,
"lng" : 139.69171,
"name" : "Tokyo"
},
"geonames_id" : 1850147
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Japan Dairy Association"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "Jミルク"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "一般社団法人Jミルク"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"chukyo-eye.or.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/02ekfha90",
"links" : [
{
"type" : "website",
"value" : "https://chukyo-eye.or.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "23",
"country_subdivision_name" : "Aichi",
"lat" : 35.18147,
"lng" : 136.90641,
"name" : "Nagoya"
},
"geonames_id" : 1856057
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Chukyo Eye Clinic"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "医療法人いさな会中京眼科"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/02kb86z46",
"links" : [
{
"type" : "website",
"value" : "https://www.city.tajimi.lg.jp/ishoken/"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "21",
"country_subdivision_name" : "Gifu",
"lat" : 35.31667,
"lng" : 137.13333,
"name" : "Tajimi"
},
"geonames_id" : 1851193
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Tajimi City Pottery Design and Technical Center"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "多治見市陶磁器意匠研究所"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"icljp.landslides.org"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/04zee8776",
"links" : [
{
"type" : "website",
"value" : "https://icljp.landslides.org"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "26",
"country_subdivision_name" : "Kyoto",
"lat" : 35.02107,
"lng" : 135.75385,
"name" : "Kyoto"
},
"geonames_id" : 1857910
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "International Consortium on Landslides"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "特定非営利活動法人国際斜斜面災害研究機構"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"nonprofit"
]
},
{
"admin" : {
"created" : {
"date" : "2020-03-15",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 2020,
"external_ids" : [
{
"all" : [
"grid.507676.5"
],
"preferred" : "grid.507676.5",
"type" : "grid"
},
{
"all" : [
"Q74452784"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/043htjv09",
"links" : [
{
"type" : "website",
"value" : "https://www.u-cergy.fr/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/CY_Cergy_Paris_University"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "FR",
"country_name" : "France",
"country_subdivision_code" : "IDF",
"country_subdivision_name" : "Île-de-France",
"lat" : 49.03894,
"lng" : 2.07805,
"name" : "Cergy-Pontoise"
},
"geonames_id" : 8555643
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label"
],
"value" : "CY Cergy Paris University"
},
{
"lang" : "fr",
"types" : [
"label",
"ror_display"
],
"value" : "CY Cergy Paris Université"
}
],
"relationships" : [
{
"id" : "https://ror.org/03qgt2624",
"label" : "Analyse, Géométrie et Modélisation",
"type" : "child"
},
{
"id" : "https://ror.org/053p8kg34",
"label" : "Laboratoire de Didactique André Revuz",
"type" : "child"
},
{
"id" : "https://ror.org/01qm1tk92",
"label" : "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales",
"type" : "child"
},
{
"id" : "https://ror.org/0592ata02",
"label" : "Equipes Traitement de l'Information et Systèmes",
"type" : "child"
},
{
"id" : "https://ror.org/00wwxk695",
"label" : "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement",
"type" : "child"
},
{
"id" : "https://ror.org/01g5pq328",
"label" : "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères",
"type" : "child"
},
{
"id" : "https://ror.org/03vam5b06",
"label" : "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie",
"type" : "child"
},
{
"id" : "https://ror.org/00vctdx48",
"label" : "Théorie Économique, Modélisation et Applications",
"type" : "child"
},
{
"id" : "https://ror.org/00mgd1d10",
"label" : "Laboratoire Paragraphe",
"type" : "child"
},
{
"id" : "https://ror.org/05nhcdk38",
"label" : "Laboratoire de Physique Théorique et Modélisation",
"type" : "child"
},
{
"id" : "https://ror.org/02k8f5n40",
"label" : "Laboratoire Cognitions Humaine et Artificielle",
"type" : "child"
},
{
"id" : "https://ror.org/05mzs1s34",
"label" : "Centre de recherche multidisciplinaire en sciences humaines et sociales",
"type" : "child"
},
{
"id" : "https://ror.org/0347ywk92",
"label" : "Bien-être, Organisations, Numérique, Habitabilité, Éducation, Universalité, Relations, Savoirs - BONHEURS",
"type" : "child"
},
{
"id" : "https://ror.org/053t9n429",
"label" : "Biomolécules : Conception, Isolement, Synthèse",
"type" : "child"
},
{
"id" : "https://ror.org/044yw8e10",
"label" : "Centre de Philosophie Juridique et Politique",
"type" : "child"
},
{
"id" : "https://ror.org/01nrtdp55",
"label" : "GDR NBODY : Problème quantique à N corps en chimie et physique",
"type" : "related"
}
],
"status" : "active",
"types" : [
"education"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"hospital.kisarazu.chiba.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/0104w5s79",
"links" : [
{
"type" : "website",
"value" : "http://www.hospital.kisarazu.chiba.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "12",
"country_subdivision_name" : "Chiba",
"lat" : 35.38329,
"lng" : 139.93254,
"name" : "Kisarazu"
},
"geonames_id" : 1859393
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Kimitsu Chuo Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "国保直営総合病院君津中央病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1951,
"external_ids" : [
{
"all" : [
"grid.444566.1"
],
"preferred" : "grid.444566.1",
"type" : "grid"
},
{
"all" : [
"0000 0004 0375 3788"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q7081869"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/04t9wmk29",
"links" : [
{
"type" : "website",
"value" : "https://owc.ac.jp/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Okayama_Gakuin_University"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "33",
"country_subdivision_name" : "Okayama",
"lat" : 34.58333,
"lng" : 133.76667,
"name" : "Kurashiki"
},
"geonames_id" : 1858311
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Okayama Gakuin University"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "岡山学院大学"
}
],
"relationships" : [
{
"id" : "https://ror.org/022nkr288",
"label" : "Okayama College",
"type" : "child"
}
],
"status" : "active",
"types" : [
"education"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"nagachu.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/03pgfk695",
"links" : [
{
"type" : "website",
"value" : "https://www.nagachu.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "15",
"country_subdivision_name" : "Niigata",
"lat" : 37.45,
"lng" : 138.85,
"name" : "Nagaoka"
},
"geonames_id" : 1856199
}
],
"names" : [
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "JA新潟厚生連長岡中央綜合病院"
},
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Nagaoka Chuo General hospital"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"pref.miyagi.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/016nnmm16",
"links" : [
{
"type" : "website",
"value" : "https://www.pref.miyagi.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "04",
"country_subdivision_name" : "Miyagi",
"lat" : 38.26667,
"lng" : 140.86667,
"name" : "Sendai"
},
"geonames_id" : 2111149
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Miyagi Prefectural Government"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "宮城県庁"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"government"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"kuji-hp.com"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/04z4ygh26",
"links" : [
{
"type" : "website",
"value" : "https://kuji-hp.com"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "03",
"country_subdivision_name" : "Iwate",
"lat" : 40.18778,
"lng" : 141.76889,
"name" : "Kuji"
},
"geonames_id" : 2129427
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Iwate Prefectural Kuji Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "岩手県立久慈病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2019-11-07",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"landwirtschaft-mv.de"
],
"established" : 1992,
"external_ids" : [
{
"all" : [
"grid.506447.4"
],
"preferred" : "grid.506447.4",
"type" : "grid"
},
{
"all" : [
"0000 0004 0426 9162"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q114659275"
],
"preferred" : "Q114659275",
"type" : "wikidata"
}
],
"id" : "https://ror.org/00s21eg45",
"links" : [
{
"type" : "website",
"value" : "https://www.landwirtschaft-mv.de"
},
{
"type" : "wikipedia",
"value" : "https://de.wikipedia.org/wiki/Landesforschungsanstalt_f%C3%BCr_Landwirtschaft_und_Fischerei_Mecklenburg-Vorpommern"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "DE",
"country_name" : "Germany",
"country_subdivision_code" : "SH",
"country_subdivision_name" : "Schleswig-Holstein",
"lat" : 53.45,
"lng" : 10.5,
"name" : "Gülzow"
},
"geonames_id" : 2913783
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "LFA"
},
{
"lang" : "de",
"types" : [
"acronym"
],
"value" : "LFA MV"
},
{
"lang" : "de",
"types" : [
"ror_display",
"label"
],
"value" : "Landesforschungsanstalt für Landwirtschaft und Fischerei"
},
{
"lang" : "de",
"types" : [
"alias"
],
"value" : "Landesforschungsanstalt für Landwirtschaft und Fischerei Mecklenburg-Vorpommern"
},
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "Mecklenburg-Vorpommern Research Centre for Agriculture and Fisheries"
},
{
"lang" : "en",
"types" : [
"label"
],
"value" : "Research Centre for Agriculture and Fisheries"
},
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "State Institute for Agriculture and Fishing Research Mecklenburg Vorpommern"
},
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "State Research Institute for Agriculture and Fisheries"
}
],
"relationships" : [
{
"id" : "https://ror.org/013k5zx16",
"label" : "Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern",
"type" : "parent"
}
],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"pref.ishikawa.lg.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/05eya0167",
"links" : [
{
"type" : "website",
"value" : "https://www.pref.ishikawa.lg.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "17",
"country_subdivision_name" : "Ishikawa",
"lat" : 36.6,
"lng" : 136.61667,
"name" : "Kanazawa"
},
"geonames_id" : 1860243
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Ishikawa Prefectural Government"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "石川県庁"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"government"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"jnmcc.or.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/01stv0b46",
"links" : [
{
"type" : "website",
"value" : "https://www.jnmcc.or.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "13",
"country_subdivision_name" : "Tokyo",
"lat" : 35.6895,
"lng" : 139.69171,
"name" : "Tokyo"
},
"geonames_id" : 1850147
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Nuclear Material Control Center"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "公益財団法人核物質管理センター"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "核物質管理センター"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"jusendo.or.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/05wg82p98",
"links" : [
{
"type" : "website",
"value" : "https://www.jusendo.or.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "07",
"country_subdivision_name" : "Fukushima",
"lat" : 37.4,
"lng" : 140.38333,
"name" : "Kōriyama"
},
"geonames_id" : 2112141
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Jusendo Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "公益財団法人湯浅報恩会寿泉堂綜合病院"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "湯浅報恩会寿泉堂綜合病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"fgh.fujimoto.com"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/00d57gd44",
"links" : [
{
"type" : "website",
"value" : "https://fgh.fujimoto.com"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "45",
"country_subdivision_name" : "Miyazaki",
"lat" : 31.73333,
"lng" : 131.06667,
"name" : "Miyakonojō"
},
"geonames_id" : 1856775
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Fujimoto General Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "一般社団法人藤元メディカルシステム藤元総合病院"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "藤元メディカルシステム藤元総合病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"gero-hp.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/04xkn8h91",
"links" : [
{
"type" : "website",
"value" : "https://www.gero-hp.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "21",
"country_subdivision_name" : "Gifu",
"lat" : 35.8,
"lng" : 137.23333,
"name" : "Gero"
},
"geonames_id" : 1848055
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Gifu Prefectural Gero Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "地方独立行政法人岐阜県立下呂温泉病院"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "岐阜県立下呂温泉病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"kaseikyohp.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/00gq2av75",
"links" : [
{
"type" : "website",
"value" : "http://www.kaseikyohp.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "46",
"country_subdivision_name" : "Kagoshima",
"lat" : 31.56667,
"lng" : 130.55,
"name" : "Kagoshima"
},
"geonames_id" : 1860827
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Kagoshima Seikyo Hospital"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "鹿児島医療生活協同組合鹿児島生協病院"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2025-01-12",
"schema_version" : "2.1"
},
"last_modified" : {
"date" : "2025-01-22",
"schema_version" : "2.1"
}
},
"domains" : [
"tvma.or.jp"
],
"established" : null,
"external_ids" : [],
"id" : "https://ror.org/041cyqf41",
"links" : [
{
"type" : "website",
"value" : "https://www.tvma.or.jp"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "AS",
"continent_name" : "Asia",
"country_code" : "JP",
"country_name" : "Japan",
"country_subdivision_code" : "13",
"country_subdivision_name" : "Tokyo",
"lat" : 35.6895,
"lng" : 139.69171,
"name" : "Tokyo"
},
"geonames_id" : 1850147
}
],
"names" : [
{
"lang" : "en",
"types" : [
"label",
"ror_display"
],
"value" : "Tokyo Veterinary Medical Association"
},
{
"lang" : "ja",
"types" : [
"label"
],
"value" : "公益社団法人東京都獣医師会"
},
{
"lang" : "ja",
"types" : [
"alias"
],
"value" : "東京都獣医師会"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"nonprofit"
]
}
],
"meta" : {
"continents" : [
{
"count" : 1284,
"id" : "as",
"title" : "Asia"
},
{
"count" : 184,
"id" : "eu",
"title" : "Europe"
},
{
"count" : 53,
"id" : "na",
"title" : "North America"
},
{
"count" : 15,
"id" : "af",
"title" : "Africa"
},
{
"count" : 9,
"id" : "sa",
"title" : "South America"
},
{
"count" : 5,
"id" : "oc",
"title" : "Oceania"
}
],
"countries" : [
{
"count" : 1241,
"id" : "jp",
"title" : "Japan"
},
{
"count" : 45,
"id" : "fr",
"title" : "France"
},
{
"count" : 40,
"id" : "it",
"title" : "Italy"
},
{
"count" : 26,
"id" : "us",
"title" : "United States"
},
{
"count" : 24,
"id" : "ca",
"title" : "Canada"
},
{
"count" : 19,
"id" : "de",
"title" : "Germany"
},
{
"count" : 13,
"id" : "ch",
"title" : "Switzerland"
},
{
"count" : 11,
"id" : "pt",
"title" : "Portugal"
},
{
"count" : 9,
"id" : "gb",
"title" : "United Kingdom"
},
{
"count" : 8,
"id" : "cn",
"title" : "China"
}
],
"statuses" : [
{
"count" : 1522,
"id" : "active",
"title" : "active"
},
{
"count" : 26,
"id" : "inactive",
"title" : "inactive"
},
{
"count" : 1,
"id" : "withdrawn",
"title" : "withdrawn"
}
],
"types" : [
{
"count" : 439,
"id" : "facility",
"title" : "facility"
},
{
"count" : 406,
"id" : "healthcare",
"title" : "healthcare"
},
{
"count" : 339,
"id" : "nonprofit",
"title" : "nonprofit"
},
{
"count" : 258,
"id" : "education",
"title" : "education"
},
{
"count" : 95,
"id" : "funder",
"title" : "funder"
},
{
"count" : 78,
"id" : "government",
"title" : "government"
},
{
"count" : 14,
"id" : "company",
"title" : "company"
},
{
"count" : 13,
"id" : "other",
"title" : "other"
},
{
"count" : 9,
"id" : "archive",
"title" : "archive"
}
]
},
"number_of_results" : 1549,
"time_taken" : 2
}
Example
Search for records created before or after a specific date by using a wildcard in the range query.
'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" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"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" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "VIC",
"country_subdivision_name" : "Victoria",
"lat" : -37.814,
"lng" : 144.96332,
"name" : "Melbourne"
},
"geonames_id" : 2158177
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "RMIT"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "RMIT University"
},
{
"lang" : "en",
"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",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"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" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "VIC",
"country_subdivision_name" : "Victoria",
"lat" : -37.814,
"lng" : 144.96332,
"name" : "Melbourne"
},
"geonames_id" : 2158177
}
],
"names" : [
{
"lang" : "en",
"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",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1967,
"external_ids" : [
{
"all" : [
"501100001790"
],
"preferred" : null,
"type" : "fundref"
},
{
"all" : [
"grid.1023.0"
],
"preferred" : "grid.1023.0",
"type" : "grid"
},
{
"all" : [
"0000 0001 2193 0854"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q1053985"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/023q4bk22",
"links" : [
{
"type" : "website",
"value" : "https://www.cqu.edu.au/"
},
{
"type" : "wikipedia",
"value" : "http://en.wikipedia.org/wiki/Central_Queensland_University"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "QLD",
"country_subdivision_name" : "Queensland",
"lat" : -23.38032,
"lng" : 150.50595,
"name" : "Rockhampton"
},
"geonames_id" : 2151437
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "CQU"
},
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "CQUniversity"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Central Queensland University"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"education",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1987,
"external_ids" : [
{
"all" : [
"501100001789"
],
"preferred" : null,
"type" : "fundref"
},
{
"all" : [
"grid.1033.1"
],
"preferred" : "grid.1033.1",
"type" : "grid"
},
{
"all" : [
"0000 0004 0405 3820"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q892188"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/006jxzx88",
"links" : [
{
"type" : "website",
"value" : "http://bond.edu.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Bond_University"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "QLD",
"country_subdivision_name" : "Queensland",
"lat" : -28.00029,
"lng" : 153.43088,
"name" : "Gold Coast"
},
"geonames_id" : 2165087
}
],
"names" : [
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Bond University"
}
],
"relationships" : [
{
"id" : "https://ror.org/05eq01d13",
"label" : "Gold Coast Hospital",
"type" : "related"
},
{
"id" : "https://ror.org/0257s2812",
"label" : "Robina Hospital",
"type" : "related"
}
],
"status" : "active",
"types" : [
"education",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1989,
"external_ids" : [
{
"all" : [
"501100001769"
],
"preferred" : null,
"type" : "fundref"
},
{
"all" : [
"grid.1037.5"
],
"preferred" : "grid.1037.5",
"type" : "grid"
},
{
"all" : [
"0000 0004 0368 0777"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q1066188"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/00wfvh315",
"links" : [
{
"type" : "website",
"value" : "http://www.csu.edu.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Charles_Sturt_University"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "NSW",
"country_subdivision_name" : "New South Wales",
"lat" : -33.41665,
"lng" : 149.5806,
"name" : "Bathurst"
},
"geonames_id" : 2176632
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "CSU"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Charles Sturt University"
}
],
"relationships" : [
{
"id" : "https://ror.org/05newpx76",
"label" : "Wagga Wagga Base Hospital",
"type" : "related"
}
],
"status" : "active",
"types" : [
"education",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"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" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "VIC",
"country_subdivision_name" : "Victoria",
"lat" : -37.814,
"lng" : 144.96332,
"name" : "Melbourne"
},
"geonames_id" : 2158177
}
],
"names" : [
{
"lang" : "en",
"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" : [
"funder",
"nonprofit"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1998,
"external_ids" : [
{
"all" : [
"grid.1064.3"
],
"preferred" : "grid.1064.3",
"type" : "grid"
}
],
"id" : "https://ror.org/00nx6aa03",
"links" : [
{
"type" : "website",
"value" : "http://research.mater.org.au/"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "QLD",
"country_subdivision_name" : "Queensland",
"lat" : -27.46794,
"lng" : 153.02809,
"name" : "Brisbane"
},
"geonames_id" : 2174003
}
],
"names" : [
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Mater Research"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1951,
"external_ids" : [
{
"all" : [
"grid.1073.5"
],
"preferred" : "grid.1073.5",
"type" : "grid"
},
{
"all" : [
"0000 0004 0626 201X"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q7592065"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/02k3cxs74",
"links" : [
{
"type" : "website",
"value" : "https://www.svi.edu.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/St._Vincent's_Institute_of_Medical_Research"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "VIC",
"country_subdivision_name" : "Victoria",
"lat" : -37.79839,
"lng" : 144.97833,
"name" : "Fitzroy"
},
"geonames_id" : 2166584
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "SVI"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "St Vincents Institute of Medical Research"
}
],
"relationships" : [
{
"id" : "https://ror.org/001kjn539",
"label" : "St Vincent's Hospital",
"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" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1989,
"external_ids" : [
{
"all" : [
"501100001208",
"100009021"
],
"preferred" : "501100001208",
"type" : "fundref"
},
{
"all" : [
"grid.1076.0"
],
"preferred" : "grid.1076.0",
"type" : "grid"
},
{
"all" : [
"0000 0004 0626 1885"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q17006364"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/046fa4y88",
"links" : [
{
"type" : "website",
"value" : "http://www.hri.org.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Heart_Research_Institute"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "NSW",
"country_subdivision_name" : "New South Wales",
"lat" : -33.89835,
"lng" : 151.17754,
"name" : "Newtown"
},
"geonames_id" : 2155386
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "HRI"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "The Heart Research Institute"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"facility",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1989,
"external_ids" : [
{
"all" : [
"grid.1088.1"
],
"preferred" : "grid.1088.1",
"type" : "grid"
},
{
"all" : [
"0000 0004 0622 6844"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q27982338"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/02d439m40",
"links" : [
{
"type" : "website",
"value" : "https://www.epipsi.gr/"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GR",
"country_name" : "Greece",
"country_subdivision_code" : "I",
"country_subdivision_name" : "Attica",
"lat" : 37.98376,
"lng" : 23.72784,
"name" : "Athens"
},
"geonames_id" : 264371
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "UMHRI"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "University Mental Health Research Institute"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"education"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1904,
"external_ids" : [
{
"all" : [
"501100000767"
],
"preferred" : null,
"type" : "fundref"
},
{
"all" : [
"grid.1121.3"
],
"preferred" : "grid.1121.3",
"type" : "grid"
},
{
"all" : [
"0000 0004 0396 1069"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q243278"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/04h08p482",
"links" : [
{
"type" : "website",
"value" : "https://www.rolls-royce.com/"
},
{
"type" : "wikipedia",
"value" : "http://en.wikipedia.org/wiki/Rolls-Royce_Holdings"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GB",
"country_name" : "United Kingdom",
"country_subdivision_code" : "ENG",
"country_subdivision_name" : "England",
"lat" : 52.92277,
"lng" : -1.47663,
"name" : "Derby"
},
"geonames_id" : 2651347
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Rolls-Royce (United Kingdom)"
}
],
"relationships" : [
{
"id" : "https://ror.org/01x3p5p96",
"label" : "Rolls-Royce (Canada)",
"type" : "child"
},
{
"id" : "https://ror.org/05jeza980",
"label" : "Rolls-Royce (Germany)",
"type" : "child"
},
{
"id" : "https://ror.org/018a0bk66",
"label" : "Rolls-Royce (Norway)",
"type" : "child"
},
{
"id" : "https://ror.org/055ef6019",
"label" : "Rolls-Royce (Sweden)",
"type" : "child"
}
],
"status" : "active",
"types" : [
"company",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1909,
"external_ids" : [
{
"all" : [
"501100000775"
],
"preferred" : null,
"type" : "fundref"
},
{
"all" : [
"grid.1236.6"
],
"preferred" : "grid.1236.6",
"type" : "grid"
},
{
"all" : [
"0000 0001 0790 9434"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q152057"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/01zctcs90",
"links" : [
{
"type" : "website",
"value" : "http://www.bp.com/"
},
{
"type" : "wikipedia",
"value" : "http://en.wikipedia.org/wiki/BP"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GB",
"country_name" : "United Kingdom",
"country_subdivision_code" : "ENG",
"country_subdivision_name" : "England",
"lat" : 51.50853,
"lng" : -0.12574,
"name" : "London"
},
"geonames_id" : 2643743
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "BP (United Kingdom)"
},
{
"lang" : null,
"types" : [
"alias"
],
"value" : "BP Amoco"
},
{
"lang" : null,
"types" : [
"alias"
],
"value" : "The British Petroleum Company"
}
],
"relationships" : [
{
"id" : "https://ror.org/051177492",
"label" : "BP (Canada)",
"type" : "child"
},
{
"id" : "https://ror.org/03f9m1k43",
"label" : "BP (France)",
"type" : "child"
},
{
"id" : "https://ror.org/048q66y67",
"label" : "BP (Germany)",
"type" : "child"
},
{
"id" : "https://ror.org/05dfvhh79",
"label" : "BP (Spain)",
"type" : "child"
},
{
"id" : "https://ror.org/051659894",
"label" : "BP (United States)",
"type" : "child"
},
{
"id" : "https://ror.org/0503ft796",
"label" : "Castrol (United Kingdom)",
"type" : "child"
}
],
"status" : "active",
"types" : [
"company",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1873,
"external_ids" : [
{
"all" : [
"grid.1281.a"
],
"preferred" : "grid.1281.a",
"type" : "grid"
},
{
"all" : [
"Q821293"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/05m7zw681",
"links" : [
{
"type" : "website",
"value" : "http://www.riotinto.com/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Rio_Tinto_Group"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GB",
"country_name" : "United Kingdom",
"country_subdivision_code" : "ENG",
"country_subdivision_name" : "England",
"lat" : 51.50853,
"lng" : -0.12574,
"name" : "London"
},
"geonames_id" : 2643743
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Rio Tinto (United Kingdom)"
}
],
"relationships" : [
{
"id" : "https://ror.org/03z28c516",
"label" : "Rio Tinto (Australia)",
"type" : "child"
},
{
"id" : "https://ror.org/00mv4xe50",
"label" : "Rio Tinto (Canada)",
"type" : "child"
},
{
"id" : "https://ror.org/01gykgk63",
"label" : "Rio Tinto (France)",
"type" : "child"
},
{
"id" : "https://ror.org/01z3j2f47",
"label" : "Rio Tinto (Switzerland)",
"type" : "child"
},
{
"id" : "https://ror.org/02vhqqh86",
"label" : "Rio Tinto (United States)",
"type" : "child"
}
],
"status" : "active",
"types" : [
"company"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1946,
"external_ids" : [
{
"all" : [
"grid.1403.6"
],
"preferred" : "grid.1403.6",
"type" : "grid"
},
{
"all" : [
"0000 0004 0462 5657"
],
"preferred" : null,
"type" : "isni"
}
],
"id" : "https://ror.org/03awtex73",
"links" : [
{
"type" : "website",
"value" : "http://www.arup.com/Global_locations/USA.aspx"
},
{
"type" : "wikipedia",
"value" : "https://www.arup.com/offices/united-states-of-america"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "NA",
"continent_name" : "North America",
"country_code" : "US",
"country_name" : "United States",
"country_subdivision_code" : "MA",
"country_subdivision_name" : "Massachusetts",
"lat" : 42.3751,
"lng" : -71.10561,
"name" : "Cambridge"
},
"geonames_id" : 4931972
}
],
"names" : [
{
"lang" : null,
"types" : [
"alias"
],
"value" : "Arup"
},
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Arup Group (United States)"
},
{
"lang" : null,
"types" : [
"alias"
],
"value" : "Ove N. Arup Consulting Engineers"
}
],
"relationships" : [
{
"id" : "https://ror.org/057d3rj91",
"label" : "Arup Group (United Kingdom)",
"type" : "parent"
}
],
"status" : "active",
"types" : [
"company"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1980,
"external_ids" : [
{
"all" : [
"501100000577",
"501100000842"
],
"preferred" : "501100000577",
"type" : "fundref"
},
{
"all" : [
"grid.1453.3"
],
"preferred" : "grid.1453.3",
"type" : "grid"
},
{
"all" : [
"0000 0001 1091 7144"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q593786"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/00kv9pj15",
"links" : [
{
"type" : "website",
"value" : "http://www.btplc.com/"
},
{
"type" : "wikipedia",
"value" : "http://en.wikipedia.org/wiki/BT_Group"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GB",
"country_name" : "United Kingdom",
"country_subdivision_code" : "ENG",
"country_subdivision_name" : "England",
"lat" : 51.50853,
"lng" : -0.12574,
"name" : "London"
},
"geonames_id" : 2643743
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "BT Group (United Kingdom)"
},
{
"lang" : null,
"types" : [
"alias"
],
"value" : "British Telecommunications"
}
],
"relationships" : [
{
"id" : "https://ror.org/01xzpd518",
"label" : "BT Archives",
"type" : "child"
},
{
"id" : "https://ror.org/03308db07",
"label" : "BT Research",
"type" : "child"
}
],
"status" : "active",
"types" : [
"company",
"funder"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1906,
"external_ids" : [
{
"all" : [
"grid.1491.d"
],
"preferred" : "grid.1491.d",
"type" : "grid"
},
{
"all" : [
"0000 0004 0642 1746"
],
"preferred" : null,
"type" : "isni"
},
{
"all" : [
"Q6786513"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/03mjtdk61",
"links" : [
{
"type" : "website",
"value" : "http://www.mater.org.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Mater_Health_Services"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "QLD",
"country_subdivision_name" : "Queensland",
"lat" : -27.46794,
"lng" : 153.02809,
"name" : "Brisbane"
},
"geonames_id" : 2174003
}
],
"names" : [
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Mater Health Services"
}
],
"relationships" : [
{
"id" : "https://ror.org/05wqhv079",
"label" : "Mater Adult Hospital",
"type" : "child"
},
{
"id" : "https://ror.org/04mxrtj31",
"label" : "Mater Children's Hospital",
"type" : "child"
},
{
"id" : "https://ror.org/01k4cfw02",
"label" : "Mater Misericordiae Hospital",
"type" : "child"
},
{
"id" : "https://ror.org/03j4rdg62",
"label" : "Mater Mothers' Hospital",
"type" : "child"
},
{
"id" : "https://ror.org/03w94w157",
"label" : "Mater Private Hospital",
"type" : "child"
}
],
"status" : "active",
"types" : [
"healthcare"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1826,
"external_ids" : [
{
"all" : [
"grid.1504.0"
],
"preferred" : "grid.1504.0",
"type" : "grid"
},
{
"all" : [
"Q733487"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/04yyp8h20",
"links" : [
{
"type" : "website",
"value" : "https://www.pilkington.com/en-GB/uk"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Pilkington"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "EU",
"continent_name" : "Europe",
"country_code" : "GB",
"country_name" : "United Kingdom",
"country_subdivision_code" : "ENG",
"country_subdivision_name" : "England",
"lat" : 53.45,
"lng" : -2.73333,
"name" : "St Helens"
},
"geonames_id" : 2638785
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Pilkington (United Kingdom)"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"company"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1976,
"external_ids" : [
{
"all" : [
"grid.1543.3"
],
"preferred" : "grid.1543.3",
"type" : "grid"
},
{
"all" : [
"0000 0004 0522 6113"
],
"preferred" : null,
"type" : "isni"
}
],
"id" : "https://ror.org/022rkxt86",
"links" : [
{
"type" : "website",
"value" : "http://www.trojantechnologies.com/"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "NA",
"continent_name" : "North America",
"country_code" : "CA",
"country_name" : "Canada",
"country_subdivision_code" : "ON",
"country_subdivision_name" : "Ontario",
"lat" : 42.98339,
"lng" : -81.23304,
"name" : "London"
},
"geonames_id" : 6058560
}
],
"names" : [
{
"lang" : null,
"types" : [
"ror_display",
"label"
],
"value" : "Trojan Technologies (Canada)"
}
],
"relationships" : [],
"status" : "active",
"types" : [
"company"
]
},
{
"admin" : {
"created" : {
"date" : "2018-11-14",
"schema_version" : "1.0"
},
"last_modified" : {
"date" : "2024-12-11",
"schema_version" : "2.1"
}
},
"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" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "VIC",
"country_subdivision_name" : "Victoria",
"lat" : -37.814,
"lng" : 144.96332,
"name" : "Melbourne"
},
"geonames_id" : 2158177
}
],
"names" : [
{
"lang" : "en",
"types" : [
"alias"
],
"value" : "The Alfred"
},
{
"lang" : "en",
"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" : "2024-12-11",
"schema_version" : "2.1"
}
},
"domains" : [],
"established" : 1989,
"external_ids" : [
{
"all" : [
"grid.1694.a"
],
"preferred" : "grid.1694.a",
"type" : "grid"
},
{
"all" : [
"Q8031120"
],
"preferred" : null,
"type" : "wikidata"
}
],
"id" : "https://ror.org/03kwrfk72",
"links" : [
{
"type" : "website",
"value" : "http://www.wch.sa.gov.au/"
},
{
"type" : "wikipedia",
"value" : "https://en.wikipedia.org/wiki/Women's_and_Children's_Hospital"
}
],
"locations" : [
{
"geonames_details" : {
"continent_code" : "OC",
"continent_name" : "Oceania",
"country_code" : "AU",
"country_name" : "Australia",
"country_subdivision_code" : "SA",
"country_subdivision_name" : "South Australia",
"lat" : -34.92866,
"lng" : 138.59863,
"name" : "Adelaide"
},
"geonames_id" : 2078025
}
],
"names" : [
{
"lang" : null,
"types" : [
"acronym"
],
"value" : "WCH"
},
{
"lang" : "en",
"types" : [
"ror_display",
"label"
],
"value" : "Women's and Children's Hospital"
}
],
"relationships" : [
{
"id" : "https://ror.org/01kpzv902",
"label" : "Flinders University",
"type" : "related"
},
{
"id" : "https://ror.org/00892tw58",
"label" : "University of Adelaide",
"type" : "related"
},
{
"id" : "https://ror.org/01p93h210",
"label" : "University of South Australia",
"type" : "related"
}
],
"status" : "active",
"types" : [
"healthcare"
]
}
],
"meta" : {
"continents" : [
{
"count" : 38028,
"id" : "eu",
"title" : "Europe"
},
{
"count" : 33563,
"id" : "na",
"title" : "North America"
},
{
"count" : 17580,
"id" : "as",
"title" : "Asia"
},
{
"count" : 2986,
"id" : "af",
"title" : "Africa"
},
{
"count" : 2902,
"id" : "sa",
"title" : "South America"
},
{
"count" : 1569,
"id" : "oc",
"title" : "Oceania"
}
],
"countries" : [
{
"count" : 29290,
"id" : "us",
"title" : "United States"
},
{
"count" : 7076,
"id" : "gb",
"title" : "United Kingdom"
},
{
"count" : 4640,
"id" : "de",
"title" : "Germany"
},
{
"count" : 3876,
"id" : "cn",
"title" : "China"
},
{
"count" : 3630,
"id" : "jp",
"title" : "Japan"
},
{
"count" : 3474,
"id" : "fr",
"title" : "France"
},
{
"count" : 3153,
"id" : "ca",
"title" : "Canada"
},
{
"count" : 2798,
"id" : "in",
"title" : "India"
},
{
"count" : 2727,
"id" : "cz",
"title" : "Czech Republic"
},
{
"count" : 1982,
"id" : "ru",
"title" : "Russia"
}
],
"statuses" : [
{
"count" : 96628,
"id" : "active",
"title" : "active"
}
],
"types" : [
{
"count" : 27470,
"id" : "company",
"title" : "company"
},
{
"count" : 19163,
"id" : "education",
"title" : "education"
},
{
"count" : 15213,
"id" : "funder",
"title" : "funder"
},
{
"count" : 13224,
"id" : "nonprofit",
"title" : "nonprofit"
},
{
"count" : 12327,
"id" : "healthcare",
"title" : "healthcare"
},
{
"count" : 8179,
"id" : "facility",
"title" : "facility"
},
{
"count" : 7861,
"id" : "other",
"title" : "other"
},
{
"count" : 5715,
"id" : "government",
"title" : "government"
},
{
"count" : 2703,
"id" : "archive",
"title" : "archive"
}
]
},
"number_of_results" : 96628,
"time_taken" : 22
}
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