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
| Header | Required | Description |
|---|---|---|
| X-API-Key | Yes | Your organisation's API key. Access is restricted to reviews owned by this organisation. |
Path Parameters
| Param | Type | Required | Description |
|---|---|---|---|
| review_id | string | Yes | The 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
| Status | Message | Cause |
|---|---|---|
| 401 Unauthorized | — | Missing or invalid X-API-Key header. |
| 404 Not Found | Review not found | No review with this ID, or it belongs to a different organisation. |
| 409 Conflict | Rank is not available while the review is in progress | Review status is PENDING or PROCESSING. Poll review status and retry. |
| 404 Not Found | Rank is not available for this review | Review status is FAILED. |
| 404 Not Found | Rank data not found for this review | Review completed but no structured rank result exists yet. |
| 404 Not Found | Rank data not available for this review | No calibrated score (e.g. desk rejection). |
| 404 Not Found | Score distribution is not yet available for this venue | Score 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.