Discover/analyticsindiamag.com API
live

analyticsindiamag.com APIanalyticsindiamag.com

Access trending articles and news from Analytics India Magazine to stay updated on AI, machine learning, and data science developments, with the ability to search for specific topics or browse the latest features. Find in-depth coverage of technology trends and industry insights tailored to data professionals and AI enthusiasts.

Endpoint health
monitored
get_article
get_latest_articles
search_articles
Checks pendingself-healing
Endpoints
3
Updated
3h ago
Try it
Sort order for results.
Maximum number of articles to return (1-100).
Search keyword to match against article titles and excerpts.
Category UUID to filter results. Obtain from get_latest_articles response category.id field. When omitted, all categories are included.
api.parse.bot/scraper/482aacec-ee2e-497f-a495-6091855788fa/<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/482aacec-ee2e-497f-a495-6091855788fa/search_articles?sort=newest&limit=5&query=artificial+intelligence&category=bdcf9c16-afbd-4145-9a89-07c599d0f332' \
  -H 'X-API-Key: $PARSE_API_KEY'
Or use the typed Python SDKfully typed · autocompletes

Typed Python client. Install the CLI, sign in, then pull this API’s generated client:

pip install parse-sdk
parse login
parse add --marketplace analyticsindiamag-com-api

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: Analytics India Magazine SDK — bounded, re-runnable."""
from parse_apis.Analytics_India_Magazine_API import AnalyticsIndiaMag, Sort, ArticleNotFound

client = AnalyticsIndiaMag()

# Search for AI articles sorted by popularity
for article in client.articles.search(query="artificial intelligence", sort=Sort.POPULAR, limit=3):
    print(article.title, article.slug)

# Get the latest articles
latest = client.article_summaries.latest(limit=1).first()
if latest:
    print(latest.title, latest.created_at)

    # Drill into full article details from a summary
    full = latest.details()
    print(full.title, full.author.name, full.published_at)

# Typed error handling for a missing article
try:
    missing = client.articles.get(slug="ai-news/nonexistent-article-slug")
    print(missing.title)
except ArticleNotFound as exc:
    print(f"Article not found: {exc}")

print("exercised: articles.search / article_summaries.latest / articles.get / summary.details")
All endpoints · 3 totalmissing one? ·

Search articles by keyword across titles and excerpts. Supports filtering by category and sorting by newest, oldest, or most popular. Returns results matching the query.

Input
ParamTypeDescription
sortstringSort order for results.
limitintegerMaximum number of articles to return (1-100).
querystringSearch keyword to match against article titles and excerpts.
categorystringCategory UUID to filter results. Obtain from get_latest_articles response category.id field. When omitted, all categories are included.
Response
{
  "type": "object",
  "fields": {
    "query": "string",
    "total": "integer",
    "articles": "array of article summaries with id, title, excerpt, image_url, read_time, created_at, slug, category, author"
  },
  "sample": {
    "data": {
      "query": "artificial intelligence",
      "total": 5,
      "articles": [
        {
          "id": "c8d07a00-3fac-464c-b61a-015c6b9611e6",
          "slug": "ai-news/reliance-approves-jio-ipo-paving-the-way-for-one-of-indias-largest-public-listings",
          "title": "Reliance Approves Jio IPO, Paving the Way for One of India's Largest Public Listings",
          "author": {
            "id": "7daf2632-04cc-469c-998e-182c5a722be1",
            "name": "Prachi Pradhan"
          },
          "excerpt": "The planned IPO comes as Reliance accelerates investments in artificial intelligence...",
          "category": {
            "id": "bdcf9c16-afbd-4145-9a89-07c599d0f332",
            "name": "AI News"
          },
          "image_url": "https://zdpdvwhvukelzzbzbjvh.supabase.co/storage/v1/object/public/imported-images/1768654960518-ae3cffd7-b5da-4522-b9d2-9384c1bf18d3-aqjc3b.webp",
          "read_time": "",
          "created_at": "2026-06-19T11:00:18.262644+00:00"
        }
      ]
    },
    "status": "success"
  }
}

About the analyticsindiamag.com API

The analyticsindiamag.com API on Parse exposes 3 endpoints for the publicly available data on analyticsindiamag.com. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.