Discover/cucas.cn API
live

cucas.cn APIcucas.cn

Access CUCAS scholarship listings, university data, and program searches across Chinese universities via 6 structured API endpoints.

Endpoints
6
Updated
3mo ago
Try it
City name or slug (e.g. beijing)
Page number
Academic degree (Bachelor, Master, Doctoral, etc.)
Program keyword or slug
Scholarship category (all_scholarship, full, partial, etc.)
Teaching language (English, Chinese, etc.)
University slug
api.parse.bot/scraper/f246e67c-986c-48cd-9524-a116b5423b43/<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/f246e67c-986c-48cd-9524-a116b5423b43/search_scholarships?page=1&category=all_scholarship' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search and filter available scholarships in China. Grouped by university.

Input
ParamTypeDescription
citystringCity name or slug (e.g. beijing)
pageintegerPage number
degreestringAcademic degree (Bachelor, Master, Doctoral, etc.)
programstringProgram keyword or slug
categorystringScholarship category (all_scholarship, full, partial, etc.)
languagestringTeaching language (English, Chinese, etc.)
universitystringUniversity slug
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "items": "array of scholarship objects",
    "total_results": "integer"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "location": "Shenzhen",
          "detail_url": "https://cucas.cn/china_scholarship/Harbin-Institute-of-Technology--Shenzhen_Physics_scholarship_1954_85358&lang=en",
          "university": "Harbin Institute of Technology, Shenzhen",
          "program_name": "Physics",
          "starting_date": "Sep,2026",
          "you_need_to_pay": "Tuition:420000Accommodation: 0-1000/monthLiving Expense: 0-1500",
          "teaching_language": "English",
          "university_rating": "4.6",
          "scholarship_coverage": "Tuition: 42000Accommodation: YesLiving Expenses: Yes"
        },
        {
          "location": "Shenzhen",
          "detail_url": "https://cucas.cn/china_scholarship/Harbin-Institute-of-Technology--Shenzhen_Urban-Rural-Planning_scholarship_1954_85359&lang=en",
          "university": "Harbin Institute of Technology, Shenzhen",
          "program_name": "Urban-Rural Planning",
          "starting_date": "Sep,2026",
          "you_need_to_pay": "Tuition:420000Accommodation: 0-1000/monthLiving Expense: 0-1500",
          "teaching_language": "English",
          "university_rating": "4.6",
          "scholarship_coverage": "Tuition: 42000Accommodation: YesLiving Expenses: Yes"
        },
        {
          "location": "Shenzhen",
          "detail_url": "https://cucas.cn/china_scholarship/Harbin-Institute-of-Technology--Shenzhen_Architecture_scholarship_1954_85353&lang=en",
          "university": "Harbin Institute of Technology, Shenzhen",
          "program_name": "Architecture",
          "starting_date": "Sep,2026",
          "you_need_to_pay": "Tuition:420000Accommodation: 0-1000/monthLiving Expense: 0-1500",
          "teaching_language": "English",
          "university_rating": "4.6",
          "scholarship_coverage": "Tuition: 42000Accommodation: YesLiving Expenses: Yes"
        }
      ],
      "total_results": 0
    },
    "status": "success"
  }
}

About the cucas.cn API

The CUCAS API provides structured access to China's university admission data across 6 endpoints, covering scholarship listings, program searches, and university directories. The get_scholarship_detail endpoint returns per-program fields including deadlines, eligibility criteria, tuition, scholarship coverage details, and required documents. Whether you're building a study-abroad tool or aggregating funding opportunities, the API gives you machine-readable access to CUCAS data without manual browsing.

Scholarship Search and Discovery

The search_scholarships endpoint accepts up to seven optional filters — city, degree, program, category, language, university, and page — and returns paginated scholarship objects grouped by university alongside a total_results count. The category parameter accepts values like full, partial, and all_scholarship, letting you narrow results to fully funded opportunities. list_popular_scholarships and list_latest_scholarships require no inputs and return curated arrays of scholarship objects, useful for surfacing featured or recently added programs on a landing page.

Scholarship Detail

For any scholarship URL from CUCAS, get_scholarship_detail returns a structured object covering deadlines (with separate self-funded and scholarship deadline keys), eligibility, documents_required, scholarship_coverage_details, and a program_info object containing degree, duration, and tuition. The is_still_available boolean flag lets you filter out expired opportunities without parsing text.

Universities and Programs

list_universities supports alphabetical browsing via the letter parameter (A–Z) and pagination via page, returning an array of university objects. search_programs takes a free-text query (e.g. "Computer Science") and returns an array of university objects each containing their matching programs — useful for finding which institutions offer a specific field of study across China.

Common use cases
  • Build a scholarship discovery tool filtered by degree level and teaching language using search_scholarships
  • Display a deadline-aware scholarship tracker using the deadlines and is_still_available fields from get_scholarship_detail
  • Aggregate full-scholarship listings for a study-abroad comparison site using the category filter
  • Power an alphabetical university directory using list_universities with the letter parameter
  • Find all Chinese universities offering a specific program by querying search_programs with a subject keyword
  • Surface recently added funding opportunities in a feed using list_latest_scholarships
  • Show required documents and eligibility criteria for individual programs using get_scholarship_detail
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 CUCAS have an official developer API?+
CUCAS does not publish a documented public developer API. This Parse API provides the structured access to CUCAS data that no official endpoint currently offers.
What does `get_scholarship_detail` return beyond basic program info?+
It returns a deadlines object with separate self-funded and scholarship deadline values, an eligibility string, a documents_required string, scholarship_coverage_details, and a program_info object containing degree level, duration, and tuition. The is_still_available boolean field indicates whether the scholarship is currently open.
How does `search_scholarships` handle pagination and large result sets?+
The endpoint accepts a page integer parameter and returns the current page, an items array of scholarship objects, and a total_results integer. You can iterate pages until the accumulated item count reaches total_results.
Does the API return application submission or enrollment endpoints?+
No. The API covers scholarship listings, program details, university data, and search. Application submission and enrollment management are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting application-related pages if that data is accessible on CUCAS.
Can I retrieve individual university profile pages with details like rankings or contact info?+
Not currently. list_universities returns an array of university objects suitable for directory browsing, but a dedicated university detail endpoint with rankings, contact information, or campus data is not included. You can fork this API on Parse and revise it to add a university detail endpoint.
Page content last updated . Spec covers 6 endpoints from cucas.cn.
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.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.