Skip to main content
POST
/
api
/
ror
/
organizations
/ror/organizations
curl --request POST \
  --url https://api.anysite.io/api/ror/organizations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "organization": "<string>",
  "timeout": 300
}
'
[
  {
    "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
organization
string
required

ROR identifier — the bare id (02mhbdp94) or the full ROR URL

Minimum string length: 1
Examples:

"02mhbdp94"

"https://ror.org/02mhbdp94"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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