# Mondaq — 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.

> Search and retrieve the latest legal articles from India's top law firms and legal experts, complete with publication dates, author information, topics, and article summaries all in one place. Stay updated on Indian legal developments by accessing curated content organized by subject matter and firm expertise.

**Category:** News & Media | **Website:** [www.mondaq.com/india](https://www.mondaq.com/india) | **Docs:** [parse.bot/marketplace/ceac78c8-1d4d-4982-b055-ced100765403/mondaq-com-api](https://parse.bot/marketplace/ceac78c8-1d4d-4982-b055-ced100765403/mondaq-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-mondaq-com-api-ceac78c8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_articles

Retrieves the latest India legal articles from Mondaq's public browse page. Each article includes title, publication date, contributing law firm, author names, practice area/topic, a teaser summary, and the article URL. Articles are ordered most-recent-first. The listing page contains approximately 34 articles; pagination slices through them by page and limit. Each article requires a detail-page fetch for date and author, so response time scales with limit.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of articles per page (1–50). |
| `page` | integer | No | Page number for paginating through the article listing. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mondaq-com-api-ceac78c8/list_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```
