jcconcursos.com.br APIjcconcursos.com.br ↗
Access Brazilian public exam listings, news articles, and job postings from jcconcursos.com.br. Filter by state, status, and more across 10 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/71f8d245-4018-4455-a6db-1a8ade89fded/get_latest_news_headlines' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract news article headlines and links from the homepage. Returns up to 20 headlines with their titles and URLs.
No input parameters required.
{
"type": "object",
"fields": {
"headlines": "array of objects with 'title' (string) and 'url' (string)"
},
"sample": {
"data": {
"headlines": [
{
"url": "https://jcconcursos.com.br/noticia/concursos/concurso-marinha-edital-qtpa-142562",
"title": "Marinha: publicado edital com 10 vagas para o QTPA"
},
{
"url": "https://jcconcursos.com.br/noticia/concursos/concurso-exercito-inscricao-espcex-142140",
"title": "Concurso do Exército abre inscrições para 440 vagas na EsPCEx"
}
]
},
"status": "success"
}
}About the jcconcursos.com.br API
The JC Concursos API exposes 10 endpoints covering Brazilian public exam (concurso) listings, news articles, and private-sector job postings from jcconcursos.com.br. Use get_open_concursos to retrieve currently open exams with vacancy counts, salary ceilings, and institution names, or get_concurso_detail to pull full exam metadata including agenda dates, education level requirements, and registration fees — all filterable by Brazilian state abbreviation.
Concurso Listings and Status Filters
Four endpoints cover different exam lifecycle stages: get_open_concursos returns active exams with vacancies, max_salary, status, and a linked news_url; get_predicted_concursos covers future exams not yet officially opened; get_ongoing_concursos surfaces exams currently in examination phases such as proofs or result publication; and get_open_concursos_by_state requires a state parameter (e.g. 'sp', 'rj', 'mg') and additionally returns aggregate stats like previsto, autorizados, abertos, and em andamento counts for that state. All listing endpoints support page for pagination.
Concurso Detail and News Content
get_concurso_detail takes a slug (available from any listing's slug field) and returns structured fields: agenda as an array of event/date pairs, salary_range, education_level, positions, vacancies, states, and institution. For editorial context, get_news_article retrieves the full body content, headline, and subtitle of a news article by slug. get_news_listing returns paginated article metadata including author, published_at, summary, and thumbnail URL.
Jobs and Search
get_empregos_listing surfaces private-sector job and internship postings with vacancies, institution, and associated news links — distinct from concurso listings. get_latest_news_headlines returns up to 20 headline/URL pairs from the homepage, useful for monitoring fresh coverage. The search_concursos endpoint accepts a query string and returns a constructed search_url rather than parsed results, since the source relies on Google Custom Search; the response includes a message field explaining this behavior.
- Aggregate open Brazilian public exam listings filtered by state to build a regional concurso tracker.
- Monitor salary ceilings and vacancy counts across federal and state institutions using
max_salaryandvacanciesfields. - Display upcoming exam agendas in a calendar app by pulling
agendaevent/date arrays fromget_concurso_detail. - Surface the latest concurso news with author attribution and publish dates via
get_news_listing. - Track state-level exam pipeline health using aggregate stats (
previsto,autorizados,abertos) fromget_open_concursos_by_state. - Build a private-sector job board alongside concurso listings by combining
get_empregos_listingwith public exam endpoints. - Power a news digest by fetching full article body text through
get_news_articleusing slugs from headline results.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does jcconcursos.com.br offer an official developer API?+
What does `get_concurso_detail` return beyond what listing endpoints provide?+
get_concurso_detail returns fields not present in listing results: a structured agenda array of exam events and their dates, salary_range (as a range rather than just a ceiling), education_level, specific positions offered, and the states field indicating where vacancies exist. It requires a slug value taken from any listing endpoint response.Does `search_concursos` return parsed search results?+
search_concursos returns a constructed search_url string and an explanatory message rather than extracted result objects. The API currently covers direct listing and detail endpoints for structured data. You can fork it on Parse and revise to add a results-parsing endpoint if your use case requires extracted search output.Can I filter news articles or job listings by state or category?+
get_news_listing and get_empregos_listing support only page pagination; neither accepts a state or category filter. The concurso listing endpoints (get_open_concursos, get_ongoing_concursos, get_predicted_concursos) do accept a state parameter. You can fork the API on Parse and revise it to add filtered news or jobs endpoints.Are registration fee amounts available through the API?+
get_concurso_detail endpoint description lists registration fee as returned data, though it surfaces as part of the detail payload rather than a dedicated numeric field. Listing endpoints such as get_open_concursos do not include fee data — only get_concurso_detail (called with a specific slug) exposes it.