Discover/collegedunia.com API
live

collegedunia.com APIcollegedunia.com

Fetch paginated student reviews, ratings, and filters for universities worldwide from Collegedunia via a single structured API endpoint.

Endpoints
1
Updated
11h ago
Try it
Page number for paginated results.
Filter reviews by stream/subject ID. Available stream IDs are returned in the filters field of the response (e.g. '339' for Computer Science, '4' for Arts).
Filter reviews by degree type. Available values are returned in the filters field of the response (e.g. 'Bachelor', 'Master').
University path slug in format '<country>/university/<id>-<name-slug>'. Examples: 'uk/university/865-university-of-oxford-oxford', 'usa/university/1020-northeastern-university-boston'. The slug can be found from the Collegedunia university page URL.
api.parse.bot/scraper/7ca1b1a0-2fab-41be-8fc8-28b5b9650068/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7ca1b1a0-2fab-41be-8fc8-28b5b9650068/get_university_reviews' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Get student reviews for a university on Collegedunia. Returns paginated reviews with ratings, pros/cons, content, and available filters. The university_slug follows the site's URL pattern including country prefix.

Input
ParamTypeDescription
pageintegerPage number for paginated results.
stream_idstringFilter reviews by stream/subject ID. Available stream IDs are returned in the filters field of the response (e.g. '339' for Computer Science, '4' for Arts).
degree_typestringFilter reviews by degree type. Available values are returned in the filters field of the response (e.g. 'Bachelor', 'Master').
university_slugrequiredstringUniversity path slug in format '<country>/university/<id>-<name-slug>'. Examples: 'uk/university/865-university-of-oxford-oxford', 'usa/university/1020-northeastern-university-boston'. The slug can be found from the Collegedunia university page URL.
Response
{
  "type": "object",
  "fields": {
    "filters": "object with available filter options and counts",
    "reviews": "array of review objects",
    "pagination": "object with current and last page numbers",
    "university": "string",
    "current_page": "integer",
    "review_stats": "object with average ratings across categories",
    "total_reviews": "integer"
  },
  "sample": {
    "filters": {},
    "reviews": [
      {
        "id": 23347,
        "url": "uk/reviews/23347-student-review-on-university-of-oxford",
        "name": "Student (Anonymous)",
        "likes": "0",
        "title": "My M.Phil Experience",
        "course": "M.Phil Development Studies",
        "content": [
          {
            "title": "",
            "content": "<ul>...</ul>"
          }
        ],
        "dislikes": "0",
        "course_url": "uk/university/865-university-of-oxford-oxford/programs?course_id=215658",
        "created_at": "2025-12-08",
        "enrollment": "2025",
        "college_name": "University of Oxford",
        "country_name": "United Kingdom",
        "review_images": {},
        "negative_points": [
          "Only thing I wish could be better..."
        ],
        "positive_points": [
          "High standards of rigor in research"
        ]
      }
    ],
    "pagination": {
      "last": 2,
      "current": 1
    },
    "university": "University of Oxford",
    "current_page": 1,
    "review_stats": {
      "rating": {
        "avg_faculty": 9.45,
        "avg_academic": 9.55,
        "avg_placement": 8.36,
        "avg_accomodation": 9,
        "avg_infrastructure": 9.27,
        "avg_extracurricular": 8
      },
      "total_reviews": 11,
      "total_student": 11,
      "average_rating": 8.33
    },
    "total_reviews": 11
  }
}

About the collegedunia.com API

The Collegedunia University Reviews API exposes one endpoint — get_university_reviews — that returns up to 9 response fields per call, including paginated student reviews, category-level rating averages, pros/cons content, and available filter options for stream and degree type. It covers universities listed on Collegedunia's Study Abroad section, addressable by country-prefixed slug.

What the Endpoint Returns

The get_university_reviews endpoint accepts a required university_slug in the format <country>/university/<id>-<name-slug> — for example, uk/university/865-university-of-oxford-oxford. It returns a reviews array of individual student review objects containing written feedback, pros/cons fields, and per-review ratings. The review_stats object aggregates average scores across rating categories for the university. total_reviews and pagination (with current_page and last_page) let you walk through all available reviews.

Filtering Reviews

Two optional parameters narrow results: stream_id filters by academic subject area, and degree_type filters by level of study (e.g., Bachelor's, Master's). Both accept values that are themselves returned in the filters response field — which includes available filter options alongside review counts — so a standard workflow is to call the endpoint once without filters to retrieve valid filter values, then re-call with the desired parameters.

Coverage and Pagination

The university field in the response confirms which institution the results belong to. Pagination is integer-based via the page parameter. The filters object documents which streams and degree types actually have reviews for a given university, preventing empty result sets from bad filter combinations. Coverage spans universities listed on Collegedunia's international study-abroad section, identified by country prefix in the slug.

Common use cases
  • Aggregate student sentiment scores from review_stats across multiple universities for a comparison tool
  • Build a subject-specific reputation index by filtering reviews with stream_id and averaging ratings
  • Extract pros/cons text from reviews to train or fine-tune a sentiment classification model
  • Power a university shortlisting feature by combining total_reviews, review_stats, and degree_type filters
  • Monitor how review counts and average ratings change over time by periodically calling get_university_reviews
  • Populate a study-abroad guide with real student feedback organized by degree level using the degree_type filter
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Collegedunia offer an official public developer API?+
Collegedunia does not publish a documented public developer API. Access to structured review data is not available through any official API offering.
How do I know which `stream_id` and `degree_type` values are valid for a university?+
Call get_university_reviews for the target university without any filter parameters. The filters field in the response lists all valid stream IDs and degree type values along with the review count for each, so you can build filter selections dynamically without guessing.
Does the API return reviewer profile data such as usernames, graduation year, or country of origin?+
The reviews array contains review content, ratings, and pros/cons text. Detailed reviewer profile fields such as graduation year or country of origin are not currently part of the response. You can fork the API on Parse and revise it to surface additional per-reviewer fields if they are available on the source page.
Can I fetch reviews for universities outside the UK?+
Yes. The university_slug parameter is country-prefixed, so universities in other countries are accessible by using their corresponding country code in the slug (e.g., us/university/... or au/university/...). Coverage depends on which institutions are listed on Collegedunia's Study Abroad section.
Does the API expose university-level metadata like ranking, tuition fees, or acceptance rates?+
The current endpoint focuses on reviews: review_stats, reviews, total_reviews, filters, and pagination. University-level metadata such as rankings, tuition fees, or acceptance rates are not returned. You can fork the API on Parse and revise it to add an endpoint targeting those data fields.
Page content last updated . Spec covers 1 endpoint from collegedunia.com.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
dictionary.cambridge.org API
Look up word definitions, pronunciations, translations, synonyms, and example sentences from Cambridge Dictionary. Search and browse thousands of words, get daily word recommendations, and access specialized business or American English dictionaries.
ieeexplore.ieee.org API
Search for scientific papers and retrieve their metadata, abstracts, references, and citations from IEEE Xplore's collection of journals and conferences. Look up author profiles, browse journals, and access paper details and full text sections all programmatically.
zenodo.org API
Search and retrieve research records, files, versions, and community data from Zenodo's open science repository. Access detailed information about academic publications, datasets, and research outputs, including file listings, version history, and community collections all in one place.
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
biblehub.com API
Search Hebrew and Greek biblical lexicon data, explore word morphology and definitions, and analyze interlinear verse translations to deepen your understanding of biblical text. Look up Strong's numbers and linguistic details across both original language systems in one place.
neetcode.io API
Access curated coding problem collections including Core Skills, Blind 75, NeetCode 150, and NeetCode 250, along with detailed problem solutions and course content organized by chapters and lessons. Perfect for preparing for technical interviews and mastering data structures and algorithms through structured learning paths.
niche.com API
Search and retrieve data on K-12 schools and colleges from Niche.com, including rankings, report card grades, stats, and user reviews.