Skip to main content
POST
/
api
/
ror
/
organizations
/
search
/ror/organizations/search
curl --request POST \
  --url https://api.anysite.io/api/ror/organizations/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "<string>",
  "country": "US"
}
'
[
  {
    "id": "<string>",
    "@type": "@ror_organization",
    "status": "<string>",
    "established": 123,
    "types": [],
    "name": "<string>",
    "aliases": [],
    "acronyms": [],
    "labels": [],
    "domains": [],
    "links": [],
    "locations": [],
    "external_ids": [],
    "relationships": [],
    "admin": {
      "@type": "@ror_admin",
      "created_at": "<string>",
      "created_schema_version": "<string>",
      "last_modified_at": "<string>",
      "last_modified_schema_version": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of organizations to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string | null

Free-text query across organization names and metadata

country
string | null

ISO country code of the organization

Example:

"US"

type
enum<string> | null

Organization type

Available options:
education,
funder,
healthcare,
company,
archive,
nonprofit,
government,
facility,
other
status
enum<string> | null

Organization status

Available options:
active,
inactive,
withdrawn

Response

Successful Response

id
string
required
@type
string
default:@ror_organization
status
string | null
established
integer | null
types
string[]
name
string | null
aliases
string[]
acronyms
string[]
labels
string[]
domains
string[]
locations
RorLocation · object[]
external_ids
RorExternalId · object[]
relationships
RorRelationship · object[]
admin
RorAdmin · object