How to Get All the Reviews that I have written and their Corresponding Submissions

OpenReview does not currently provide an official document that certifies that a Reviewer has participated in the review process of a conference. However, it is still possible to retrieve the public reviews and public submissions that the Reviewer reviewed using the python client from OpenReview.

Steps for getting Reviews

  1. Instantiate your OpenReview client

client = openreview.api.OpenReviewClient(
    baseurl='https://api2.openreview.net',
    username=<your username>,
    password=<your password>
)
  1. Run the following method

result = openreview.tools.get_own_reviews(client)

# Result is a list of dictionaries that have the following schema
# {
#     'submission_title': <Submission title>,
#     'submission_link': <Link to submission>,
#     'review_link': <Link to review>
# }

Last updated