# SCC Online — 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.

> Retrieve the latest Indian legal news, case analyses, and legislation updates from the SCC Online Blog, with posts organized by date for easy browsing. Paginate through recent content to stay informed on legal developments and court decisions.

**Category:** News & Media | **Website:** [www.scconline.com/blog/](https://www.scconline.com/blog/) | **Docs:** [parse.bot/marketplace/aa81294a-a265-4f11-9a65-5308d5ab07a1/scconline-com-api](https://parse.bot/marketplace/aa81294a-a265-4f11-9a65-5308d5ab07a1/scconline-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-scconline-com-api-aa81294a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_recent_posts

Retrieves the most recent blog posts from SCC Online in reverse chronological order. Each post includes title, publication date, author, categories, excerpt, and link. Results are auto-iterated across pages; each page contains up to 20 posts. Suitable for daily-fresh polling feeds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `per_page` | integer | No | Number of posts per page, between 1 and 20. |

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