Discover/Com API
live

Com APIsarkariresult.com.cm

Access Indian government exam notifications, results, admit cards, and job postings via the SarkariResult.com.cm API. Search and retrieve full post details.

This API takes change requests — .
Endpoint health
verified 2h ago
list_posts
get_post
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Com API?

The SarkariResult.com.cm API exposes 2 endpoints covering Indian government exam listings and full post details, including vacancy counts, application deadlines, and fee structures. The list_posts endpoint lets you search and filter across categories like admit-card, result, latest-job, and syllabus, while get_post returns the complete details for any individual exam post by its numeric ID.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-based).
Free-text search query to filter posts by keyword (e.g. 'UPSC', 'Railway').
Filter posts by category slug.
api.parse.bot/scraper/c0f29a36-31f9-4da4-aeb3-63d34d3ca574/<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/c0f29a36-31f9-4da4-aeb3-63d34d3ca574/list_posts?page=1&search=UPSC&category=latest-job' \
  -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 sarkariresult-com-cm-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.

"""Walkthrough: sarkariresult_com_cm_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.sarkariresult_com_cm_api import SarkariResult, Category, PostNotFound

client = SarkariResult()

# Browse latest job posts by category
for post in client.posts.search(category=Category.LATEST_JOB, limit=3):
    print(post.title, post.last_date)

# Search for a specific exam keyword
result = client.posts.search(search="UPSC", limit=1).first()
if result:
    print(result.title, result.total_posts)

# Drill into full details from a summary
if result:
    try:
        full = result.details()
        print(full.title, full.important_dates)
    except PostNotFound as e:
        print("not found:", e.post_id)

print("exercised: posts.search, PostSummary.details")
All endpoints · 2 totalmissing one? ·

Search and list government exam posts. Supports filtering by category (latest-job, admit-card, result, answer-key, admission, syllabus, sarkari-job, documents) and free-text search. Results are auto-iterated across pages; each post includes title, dates, and vacancy count.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
searchstringFree-text search query to filter posts by keyword (e.g. 'UPSC', 'Railway').
categorystringFilter posts by category slug.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "posts": "array of post summaries with id, title, slug, link, dates, categories, last_date, and total_posts",
    "total": "total number of matching posts across all pages",
    "total_pages": "total number of pages available"
  },
  "sample": {
    "data": {
      "page": 1,
      "posts": [
        {
          "id": 38953,
          "date": "2026-08-02T13:02:02",
          "link": "https://sarkariresult.com.cm/ibps-clerk-16th-2026/",
          "slug": "ibps-clerk-16th-2026",
          "title": "IBPS Clerk (CSA) 16th Online Form 2026 – Start",
          "modified": "2026-08-02T13:02:05",
          "last_date": "21 August 2026",
          "categories": [
            5,
            7
          ],
          "long_title": "IBPS Clerk (CSA) 16th Recruitment 2026",
          "total_posts": "11403 Posts"
        }
      ],
      "total": 130,
      "total_pages": 13
    },
    "status": "success"
  }
}

About the Com API

What the API Returns

The list_posts endpoint returns paginated summaries of government exam posts from SarkariResult.com.cm. Each item in the posts array includes a numeric id, title, slug, link, dates, categories, last_date (application deadline), and total_posts (vacancy count as text). The total and total_pages fields tell you the full extent of the result set. You can filter by category slug — valid values include latest-job, admit-card, result, answer-key, admission, syllabus, sarkari-job, and documents — or pass a search string like UPSC or Railway to narrow results by keyword.

Full Post Details

The get_post endpoint accepts a post_id (numeric, as returned from list_posts) and returns a single post's complete data. Response fields include the title (HTML entities decoded), long_title (a fuller descriptive title from custom fields), date and modified in ISO format, last_date, link, slug, categories (array of category IDs), and total_posts. The response also includes HTML content blocks covering short details, important dates, application fees, age limits, vacancy breakdowns, and important links — exactly the structured sections you see on the source page.

Pagination and Search

Both endpoints use 1-based page numbering. list_posts auto-iterates across pages, and the total_pages field in the response tells you how many pages exist for a given query. There is no required input — all parameters for list_posts are optional, so calling it with no arguments returns the latest posts across all categories.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for sarkariresult.com.cm — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sarkariresult.com.cm 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 sarkariresult.com.cm 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
2h ago
Latest check
2/2 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 job alert system that polls list_posts with category=latest-job and notifies users when new vacancies appear.
  • Aggregate admit card release dates using list_posts?category=admit-card and surface them in a calendar view.
  • Track application deadlines by extracting the last_date field from post summaries across multiple categories.
  • Create a vacancy tracker that monitors total_posts field changes for specific exam slugs over time.
  • Index full exam details from get_post including fee structures and age limits for a government jobs comparison tool.
  • Filter exam results by keyword (e.g. 'Railway', 'SSC') using the search parameter in list_posts to build a topical feed.
  • Retrieve and store answer-key posts by category slug to build a study-resource aggregator for competitive exam prep.
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 SarkariResult.com.cm have an official developer API?+
No. SarkariResult.com.cm does not publish an official developer API or documented public endpoints for accessing its data programmatically.
What categories can I filter by in `list_posts`, and what does each cover?+
The category parameter accepts eight slugs: latest-job (new vacancy announcements), admit-card (hall ticket releases), result (exam result declarations), answer-key (official answer keys), admission (academic admissions), syllabus (exam syllabi), sarkari-job (government job postings), and documents (document-related notices). Omitting the parameter returns posts across all categories.
Does `get_post` return structured tables for fees, vacancies, and dates, or just raw HTML?+
The key metadata fields — title, long_title, date, modified, last_date, total_posts, and categories — are returned as discrete structured fields. The detailed sections (application fees, age limits, vacancy breakdowns, important links) are returned as HTML content blocks rather than individually keyed fields.
Does the API cover state-level government job notifications, or only central government exams?+
The API reflects what is posted on SarkariResult.com.cm, which includes both central and state government exam notifications. However, there is no dedicated filter parameter to isolate state-level versus central postings — you would need to use the search parameter with a state name or organization name to narrow results. You can fork this API on Parse and revise it to add a state-specific filter endpoint if that distinction matters for your use case.
Is historical post data available, or only recent posts?+
The API paginates through all posts currently indexed on SarkariResult.com.cm, not just recent ones. Using the page parameter in list_posts along with total_pages from the response, you can walk back through older listings. However, posts that have been removed from the source site will not appear in results. You can fork this API on Parse and revise it to add archival storage if you need to retain posts after they are removed upstream.
Page content last updated . Spec covers 2 endpoints from sarkariresult.com.cm.
Related APIs in Government PublicSee all →
naukri.com API
Access data from naukri.com.
jobz.pk API
Access real-time job listings from jobz.pk and filter by category, city, organization, newspaper, province, and sector to find positions that match your needs. Get detailed job information, browse government and overseas opportunities, and explore company profiles all in one place.
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.
scconline.com API
Retrieve the latest Indian legal news, case analyses, and legislation updates from the SCC Online Blog, with posts organized by date for easy browsing. Paginate through recent content to stay informed on legal developments and court decisions.
indeed.co.in API
Search for jobs across Indeed India and access detailed information about listings, companies, salaries, and locations to help with your job hunt. Get autocomplete suggestions for job titles and places, plus salary guides and company details to make informed career decisions.
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.
indiavotes.com API
Access comprehensive Indian election data including Lok Sabha and Vidhan Sabha results, search candidates by name, explore constituency details, and compare party performance across historical elections. Track election results across states and parliamentary/assembly constituencies all in one place.
jcconcursos.com.br API
Browse and search public job exams (concursos) across Brazil by state, view detailed exam information, and discover related job opportunities and news updates. Stay informed with the latest headlines and find upcoming, authorized, or predicted exams.