pub.chive.actor.autocompleteOpenReview

chive.pub

Documentation

Autocomplete OpenReview profiles (proxied since OpenReview API does not support CORS)

main query

Autocomplete OpenReview profiles (proxied since OpenReview API does not support CORS)

Parameters

limit integer Optional

Maximum number of suggestions to return

query string Required

Search query for researcher name

Output

Encodingapplication/json
suggestions array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Maximum number of suggestions to return
Search query for researcher name
View raw schema
{
  "type": "query",
  "errors": [],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "suggestions"
      ],
      "properties": {
        "suggestions": {
          "type": "array",
          "items": {
            "ref": "#openReviewSuggestion",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "query"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 10,
        "maximum": 50,
        "minimum": 1,
        "description": "Maximum number of suggestions to return"
      },
      "query": {
        "type": "string",
        "minLength": 1,
        "description": "Search query for researcher name"
      }
    }
  },
  "description": "Autocomplete OpenReview profiles (proxied since OpenReview API does not support CORS)"
}
openReviewSuggestion object

An OpenReview profile suggestion

Properties

displayName string Required

Full name of the researcher

id string Required

OpenReview profile ID (e.g., ~John_Smith1)

institution string Optional

Current institution if available

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "displayName"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "OpenReview profile ID (e.g., ~John_Smith1)"
    },
    "displayName": {
      "type": "string",
      "description": "Full name of the researcher"
    },
    "institution": {
      "type": "string",
      "description": "Current institution if available"
    }
  },
  "description": "An OpenReview profile suggestion"
}

Lexicon Garden

@