# Analytics India Magazine — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** News & Media | **Website:** [analyticsindiamag.com/latest](https://analyticsindiamag.com/latest) | **Docs:** [parse.bot/marketplace/d64614dd-1994-4b21-bc15-6e9cea5e3ab4/analyticsindiamag-com-api](https://parse.bot/marketplace/d64614dd-1994-4b21-bc15-6e9cea5e3ab4/analyticsindiamag-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-analyticsindiamag-com-api-d64614dd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieve full article details including HTML content, SEO metadata, key takeaways, author bio, and category info by article slug. The slug is the path portion from the article URL (e.g. 'ai-news/article-title-here').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article slug from the URL path, formatted as category-slug/article-title (e.g. 'ai-news/reliance-approves-jio-ipo-paving-the-way-for-one-of-indias-largest-public-listings'). Obtainable from search_articles or get_latest_articles results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-analyticsindiamag-com-api-d64614dd/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_latest_articles

Retrieve the most recently published articles, optionally filtered by category. Returns articles ordered by publication date descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category UUID to filter results. Obtain from article response category.id field. When omitted, all categories are included. |
| `limit` | integer | No | Maximum number of articles to return (1-100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-analyticsindiamag-com-api-d64614dd/get_latest_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>"}'
```

### search_articles

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category UUID to filter results. Obtain from get_latest_articles response category.id field. When omitted, all categories are included. |
| `limit` | integer | No | Maximum number of articles to return (1-100). |
| `query` | string | No | Search keyword to match against article titles and excerpts. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-analyticsindiamag-com-api-d64614dd/search_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","query":"<string>","sort":"<string>"}'
```
