Platform Authentication

Provide your API Key to enable the interactive playground across all platform tools.

Paper Ranking

Retrieve calibrated scores, percentile rankings, and venue score distributions for completed partner reviews.

API Reference

Returns rank data for a completed partner review. Use the job_id from Agentic Review submission. While a review is still processing, poll GET /api/platform/reviews/{job_id} first.

GET https://cspaper-frontend-prod.azurewebsites.net/api/platform/ranking/review-rank/{review_id}

Authentication

HeaderRequiredDescription
X-API-KeyYesYour organisation's API key. Access is restricted to reviews owned by this organisation.

Path Parameters

ParamTypeRequiredDescription
review_idstringYesThe partner review job_id returned by POST /api/platform/review.

Response — 200 OK

{
    status:200,
    data:{
      review_id:"<partner_review_job_id>",
      calibrated_score:2.5,
      template_id:"NeurIPS_main_2026",
      top_percentage:18.4,
      score_distribution:{
        template_id:"NeurIPS_main_2026",
        snapshot_dt:"2026-01-01T00:00:00Z",
        sample_count:120,
        domain:{
          min:-3,
          max:3
        },
        cdf:{
          edges:[
            -3,
            0,
            3
          ],
          values:[
            0,
            0.5,
            1
          ]
        },
        fit:{
          family:"normal"
        },
        statistics:{
          mean:0,
          median:0
        },
        version:1
      }
    }
}

top_percentage is the percentile rank (lower = better). score_distribution is the latest venue CDF used to compute it.

Error Responses

StatusMessageCause
401 UnauthorizedMissing or invalid X-API-Key header.
404 Not FoundReview not foundNo review with this ID, or it belongs to a different organisation.
409 ConflictRank is not available while the review is in progressReview status is PENDING or PROCESSING. Poll review status and retry.
404 Not FoundRank is not available for this reviewReview status is FAILED.
404 Not FoundRank data not found for this reviewReview completed but no structured rank result exists yet.
404 Not FoundRank data not available for this reviewNo calibrated score (e.g. desk rejection).
404 Not FoundScore distribution is not yet available for this venueScore exists but venue CDF has not been built yet.

Example (cURL)

curl \ https://cspaper-frontend-prod.azurewebsites.net/api/platform/ranking/review-rank/REVIEW_ID \ -H "X-API-Key: YOUR_API_KEY"

Playground

Configure your API Key above to use the playground.