ReferenceDiscovery
List available years for an exam
Returns all available years for the given exam code. Useful for discovering what data exists before making authenticated requests.
Supported exam codes:
neet— NEET (2006–2026, 21 years)jeemain— JEE Main (coming soon)jeeadv— JEE Advanced (coming soon)
This endpoint does NOT require authentication.
Authorization
BearerAuth AuthorizationBearer <token>
Unkey API key. Prefix: ps_ (production) / ps_test_ (staging).
Authorization: Bearer ps_xxxxxxxxxxxxxxxxxxxxxxxx
Get your key at paperstack.qzz.io.
In: header
Path Parameters
exam*string
Exam code.
Value in
"neet" | "jeemain" | "jeeadv"Response Body
application/json
application/json
curl -X GET "https://example.com/neet"{
"exam": "neet",
"label": "NEET",
"years": [
2026,
2025,
2024,
2023,
2022,
2021,
2020,
2019,
2018,
2017,
2016,
2015,
2014,
2013,
2012,
2011,
2010,
2009,
2008,
2007,
2006
],
"totalYears": 21
}{
"error": "Invalid or expired API key. Get a new one at paperstack.qzz.io."
}Was this page helpful?