Discover/Ac API
live

Ac APIgate2026.iitg.ac.in

Access GATE 2026 exam data via API: notifications, important dates, syllabus, eligibility, fees, exam schedule, mock tests, and more from gate2026.iitg.ac.in.

Endpoint health
verified 4d ago
get_important_dates
get_notifications
get_test_papers_and_syllabus
get_mock_test_links
get_photograph_signature_guidelines
16/16 passing latest checkself-healing
Endpoints
16
Updated
26d ago

What is the Ac API?

This API exposes 16 endpoints covering the official GATE 2026 exam information published by IIT Guwahati, including get_notifications, get_examination_schedule, get_test_papers_and_syllabus, and get_faqs. Responses surface structured data for all 30 test papers, zonal exam cities, application fee categories, two-paper combination rules, and eligibility criteria — everything a developer needs to build a GATE preparation or information tool without parsing the official site manually.

Try it

No input parameters required.

api.parse.bot/scraper/b8071ea4-6ccc-4fc8-ad64-f2ba556da675/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b8071ea4-6ccc-4fc8-ad64-f2ba556da675/get_notifications' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace gate2026-iitg-ac-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.gate_2026_api import Gate2026, TestPaper, ExamDay, MockTest, FeeCategory, Notification, PaperCombination, ExamZone

gate = Gate2026()

# List all notifications
for notif in gate.notifications.list():
    print(notif.date, notif.description, notif.link)

# Get test papers and their syllabus links
for paper in gate.testpapers.list():
    print(paper.code, paper.paper, paper.syllabus_link)

# Check the examination schedule with session details
for day in gate.examdays.list():
    print(day.date, day.forenoon.papers, day.afternoon.papers)

# Get mock test links
for mock in gate.mocktests.list():
    print(mock.paper_name, mock.link)

# Get application fees by category
for fee in gate.feecategories.list():
    print(fee.category, fee.regular_period_fee, fee.extended_period_fee)

# Get two-paper combinations
for combo in gate.papercombinations.list():
    print(combo.primary_paper_code, combo.allowed_secondary_paper_codes)

# Get exam zones with cities by state
for zone in gate.examzones.list():
    print(zone.zone, zone.institute_info, zone.states)

# Get downloads (brochures and previous year papers)
downloads = gate.downloadcollections.get()
for dl in downloads.general_downloads:
    print(dl.name, dl.link)

# Get opportunities info
opp = gate.opportunities.get()
print(opp.opportunities)
All endpoints · 16 totalmissing one? ·

Get GATE 2026 news and notifications. Returns a chronologically ordered list of notification items with dates, descriptions, and optional links to relevant documents or portals.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "notifications": "array of notification objects with date, description, and link (nullable)"
  },
  "sample": {
    "data": {
      "notifications": [
        {
          "date": "March 27, 2026",
          "link": null,
          "description": "GATE 2026 Score Card is released"
        },
        {
          "date": "March 19, 2026",
          "link": "https://goaps.iitg.ac.in/login",
          "description": "GATE 2026 results are live atGOAPS PORTAL"
        }
      ]
    },
    "status": "success"
  }
}

About the Ac API

Exam Structure and Schedule

get_test_papers_and_syllabus returns all 30 GATE 2026 papers with their two-letter codes and direct URLs to syllabus PDFs, spanning engineering, science, arts, and humanities. get_question_paper_pattern surfaces structured parameter/detail pairs covering exam mode, duration, marking scheme, and negative marking rules. get_examination_schedule returns the full 4-day timetable with forenoon and afternoon session objects, each containing the session time and assigned paper codes. get_two_paper_combinations maps each primary paper code to an array of allowed secondary codes for candidates sitting two papers.

Dates, Notifications, and Application Info

get_important_dates returns activity names alongside day-of-week and date values, with slash-separated ranges where a single activity spans multiple dates. get_notifications delivers a chronologically ordered list of notification objects with date, description, and a nullable link field for attachments or portals. get_application_fees breaks down fees by candidate category for both regular and extended registration periods. get_eligibility_criteria lists qualifying degree categories with full degree descriptions and year-of-study requirements.

Cities, Documents, and Mock Tests

get_exam_cities organizes GATE 2026 test centers across 8 zonal coordinating institutes, returning each zone's institute contact details alongside a state-to-cities mapping. get_required_documents provides a plain string array of all items needed during the application process. get_mock_test_links returns paper names paired with their mock test URLs on the official testing platform, useful for building direct-access tools or study dashboards.

Downloads, FAQs, and Contact

get_downloads returns two structures: a general_downloads array for brochures and advertisements, and a previous_years_papers object keyed by year (2021–2025), each year mapping to paper name, paper PDF link, and answer key link. get_faqs organizes content into typed items — qa pairs, status_info blocks, and text blocks — grouped by category. get_contact_info returns the GATE-JAM Office address, phone, and email at IIT Guwahati.

Reliability & maintenanceVerified

The Ac API is a managed, monitored endpoint for gate2026.iitg.ac.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gate2026.iitg.ac.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official gate2026.iitg.ac.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
16/16 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a GATE 2026 countdown app using activity names and dates from get_important_dates
  • Populate a paper-selection UI with all 30 paper codes and syllabus PDF links from get_test_papers_and_syllabus
  • Enforce two-paper combination validation logic using primary and allowed secondary codes from get_two_paper_combinations
  • Display the full exam timetable with forenoon/afternoon session assignments from get_examination_schedule
  • Aggregate previous years' question papers and answer keys (2021–2025) from get_downloads for a study repository
  • Surface real-time GATE 2026 notifications with dates and document links from get_notifications in a mobile app
  • Build an exam-city lookup tool organized by zone and state using get_exam_cities
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 gate2026.iitg.ac.in have an official developer API?+
No. IIT Guwahati does not publish a documented developer API for the GATE 2026 website. This Parse API is the structured programmatic interface for that data.
What does get_faqs return and how are its items typed?+
get_faqs returns an array of category objects. Each category contains a content array where items carry a type field: 'qa' items have question and answer strings, 'status_info' items have status and description strings, and 'text' items carry a plain text block. This lets you render FAQ sections, application status guides, and informational passages differently in your UI.
Does the API expose individual candidate application status or admit card data?+
Not currently. The API covers publicly published exam information — schedules, syllabi, notifications, fees, and static FAQs — but not candidate-specific data such as application status, admit cards, or scorecard results. You can fork this API on Parse and revise it to add an endpoint targeting the candidate login portal if that data becomes accessible.
Does get_exam_cities return contact details for each individual test center?+
No. get_exam_cities returns zonal-level data: each zone entry includes the coordinating institute's contact information and a mapping of states to city arrays, but individual test center addresses and codes are not included in the response. You can fork this API on Parse and revise it to add a more granular test-center endpoint if that detail is needed.
How does get_previous_years_papers differ from get_downloads?+
There is no standalone get_previous_years_papers endpoint. Previous years' question papers (2021–2025) with answer key links are returned inside get_downloads under the previous_years_papers key, which is a year-keyed object. The general_downloads key in the same response covers brochures, posters, and newspaper advertisements.
Page content last updated . Spec covers 16 endpoints from gate2026.iitg.ac.in.
Related APIs in EducationSee all →
josaa.nic.in API
Access JoSAA (Joint Seat Allocation Authority) admission data for IITs, NITs, IIITs, and GFTIs. Retrieve opening and closing ranks by institute, program, category, quota, and round for the current counselling session as well as historical data from 2016 onwards. Also query seat matrices and full institute details.
shiksha.com API
Search and browse Shiksha colleges by stream/course, then fetch detailed institute profiles and course offerings, plus upcoming exam schedules by stream.
boslive.icai.org API
Access the ICAI Board of Studies Knowledge Portal, including announcements, examination updates, Live Virtual Class (LVC) and Live Virtual Revisionary Class (LVRC) schedules, and study materials. Browse available courses, languages, and papers, and retrieve direct PDF links for any portal page.
nirfindia.org API
Access India's NIRF rankings across multiple years and categories to compare higher education institution scores, find participating colleges, and search for specific institutions by name. Get detailed ranking parameters and stay updated with the latest notifications about institutional performance and rankings.
egazette.nic.in API
Access official Indian gazette publications including recent Extraordinary and Weekly gazettes, browse them by category, and explore the complete directory of available documents. Quickly find and retrieve the latest government publications all in one place.
incometaxindia.gov.in API
Search and retrieve official Income Tax Department notifications from India spanning over 60 years, with the ability to filter by year, search by text, and browse through paginated results. Access detailed information about each notification including its number, title, date, documents, and categories to stay updated on tax policy changes and regulatory updates.
garp.org API
Access comprehensive information about GARP's FRM, SCR, and RAI certifications including exam schedules, fees, logistics, and program details to plan your risk professional certification journey. Explore membership options, industry insights, and events to stay informed about professional development opportunities in risk management.
econtent.msbte.edu.in API
Browse technical diploma programs and access their bilingual curriculum materials, including courses, learning outcomes, and educational content across multiple semesters. Search for specific educational resources by keyword and download course materials available in both Marathi and English.