Discover/Com API
live

Com APIflexieduconsult.com.ng

Access Nigerian university admissions news, JAMB, WAEC, and Post-UTME articles from flexieduconsult.com.ng via 2 structured JSON endpoints.

Endpoint health
verified 5h ago
list_news
get_article
2/2 passing latest checkself-healing
Endpoints
2
Updated
6h ago

What is the Com API?

The Flexi Edu Consult API provides access to Nigerian educational news content from flexieduconsult.com.ng through 2 endpoints, returning articles with 8 response fields each including title, full body text, publication timestamp, and associated PDF URLs. The list_news endpoint delivers paginated article summaries ordered by most recent first, while get_article fetches a single article by its unique document ID.

Try it
Number of articles per page, between 1 and 100.
Opaque token for fetching the next page of results. Obtained from a previous list_news response's next_page_token field.
api.parse.bot/scraper/cd3d2ef3-19fa-4f61-9818-c87334abaa0e/<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/cd3d2ef3-19fa-4f61-9818-c87334abaa0e/list_news?page_size=5' \
  -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 flexieduconsult-com-ng-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: FlexiEduConsult SDK — browse Nigerian education news updates."""
from parse_apis.flexieduconsult_com_ng_api import FlexiEduConsult, ArticleNotFound

client = FlexiEduConsult()

# List latest news articles, capped at 3
for article in client.articles.list(page_size=5, limit=3):
    print(article.title, "|", article.timestamp)

# Drill into the first article for full content
first = client.articles.list(limit=1).first()
if first:
    print(f"Full article: {first.title}")
    print(f"Published: {first.timestamp}, Image: {first.image_url}")
    print(f"Content preview: {first.content[:120]}...")

# Fetch a specific article by ID with error handling
if first:
    try:
        detail = client.articles.get(article_id=first.id)
        print(detail.title, detail.content[:80])
    except ArticleNotFound as exc:
        print(f"Article not found: {exc}")

print("exercised: articles.list / articles.get / ArticleNotFound error handling")
All endpoints · 2 totalmissing one? ·

List news articles ordered by most recent first. Returns paginated results with article summaries including title, content, timestamp, and image URL. Results are auto-iterated across pages; pass limit to cap total items fetched.

Input
ParamTypeDescription
page_sizeintegerNumber of articles per page, between 1 and 100.
page_tokenstringOpaque token for fetching the next page of results. Obtained from a previous list_news response's next_page_token field.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of articles returned in this page",
    "articles": "array of news article objects with id, title, content, timestamp, imageUrl, pdfUrl, pdfThumbUrl, tableData",
    "next_page_token": "string or null, opaque token for fetching the next page"
  },
  "sample": {
    "data": {
      "count": 5,
      "articles": [
        {
          "id": "AMjfnLUJgGuCk6UvlmWW",
          "title": "Babcock University Opens Applications for Post-UTME, Direct Entry, and Part-Time Programmes",
          "pdfUrl": "",
          "content": "Prospective students seeking admission into one of Nigeria's leading private universities...",
          "imageUrl": "https://res.cloudinary.com/dwmbgd9jy/image/upload/v1782344530/hmyep5b83rnchbe8u7bt.jpg",
          "tableData": "",
          "timestamp": "2026-06-24T23:42:12.802Z",
          "pdfThumbUrl": ""
        }
      ],
      "next_page_token": "AFTOeJxeK8yRKxzGrunXlOd5SYrxLlK6..."
    },
    "status": "success"
  }
}

About the Com API

Endpoints and Data Coverage

The API exposes two endpoints covering educational news published on flexieduconsult.com.ng. list_news returns paginated results with each article object containing id, title, content, timestamp, imageUrl, pdfUrl, pdfThumbUrl, and tableData. The page_size parameter accepts integers between 1 and 100 to control how many articles are returned per page. Pagination is handled via an opaque next_page_token string returned in each response — pass it back as page_token in the next request to advance through the result set.

Single Article Retrieval

get_article accepts an article_id — a Firestore document ID such as WAUXmgioagIl3J9Wbx1S obtained from a prior list_news call — and returns the full article record. The response includes the complete content body text, an ISO 8601 timestamp, imageUrl for the featured image, and pdfUrl plus pdfThumbUrl for any associated PDF document. The tableData field carries structured tabular data where the article includes cut-off mark tables, merit lists, or similar formatted content common in Nigerian admissions coverage.

Content Focus

Articles span topics typical of Nigerian secondary and tertiary education: JAMB UTME registration and results, WAEC examination schedules and results, Post-UTME screening details for individual universities, and general admissions news. Content is ordered chronologically with most recent articles first, making the list_news endpoint suitable for monitoring new announcements as they are published.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for flexieduconsult.com.ng — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when flexieduconsult.com.ng 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 flexieduconsult.com.ng 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
5h 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
  • Monitor new JAMB result announcements by polling list_news for recent timestamp values
  • Build a Nigerian admissions news feed aggregator using paginated list_news responses
  • Extract Post-UTME cut-off mark tables from the tableData field for specific university articles
  • Download and archive admissions PDF documents using pdfUrl returned per article
  • Display article thumbnails in a mobile app using imageUrl and pdfThumbUrl fields
  • Retrieve full WAEC or NECO article body text via get_article for content indexing
  • Track publication cadence of Nigerian university screening notices using timestamp metadata
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 flexieduconsult.com.ng have an official developer API?+
Flexi Edu Consult does not publish an official developer API or documented public data feed. This Parse API is the structured way to access article data from the site.
What does `tableData` contain and when is it populated?+
tableData holds structured tabular content extracted from articles that include formatted data such as university cut-off marks, screening schedules, or merit list breakdowns. For articles without tabular content, the field is typically empty or null.
Can I filter `list_news` results by topic, university, or exam type?+
The list_news endpoint does not currently support filtering by topic, institution name, or exam type — it returns all articles ordered by most recent first, and you control page size via page_size. You can fork this API on Parse and revise it to add a keyword or category filter endpoint.
How fresh is the article data relative to the source site?+
Articles are returned with an ISO 8601 timestamp reflecting the original publication date. Freshness depends on when content is published on flexieduconsult.com.ng; the API does not expose a separate 'last indexed' or 'last updated' field, so the timestamp is the best available freshness signal.
Does the API cover content from other Nigerian education news sites?+
Not currently. Both endpoints are scoped exclusively to flexieduconsult.com.ng content. You can fork this API on Parse and revise it to add endpoints that pull from additional Nigerian education sources.
Page content last updated . Spec covers 2 endpoints from flexieduconsult.com.ng.
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.
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.
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.
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.
wordreference.com API
Search for word translations across multiple languages using WordReference's comprehensive dictionary database. Retrieve detailed meanings, usage contexts, grammatical information, and example sentences. Access public vocabulary collections and word-of-the-day features.
semanticscholar.org API
Search millions of academic papers by keyword with customizable sorting options, then access detailed information like abstracts, reference counts, and publication metadata for any result. Find and retrieve comprehensive scholarly paper data to power your research, citation management, or academic discovery workflows.
teacherspayteachers.com API
Search and browse K-12 educational resources from Teachers Pay Teachers, view detailed resource information and reviews, and explore seller profiles and their offerings. Discover both premium and free teaching materials to find the perfect resources for your classroom needs.