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

> Get real-time gold and silver rates, IPO details, share price targets, and financial articles from MoneyMintIdea by searching across categories or browsing specific topics. Stay informed with curated financial content tailored to your investment decisions.

**Category:** Finance & Markets | **Website:** [moneymintidea.com/](https://moneymintidea.com/) | **Docs:** [parse.bot/marketplace/93e6ccb9-3118-4646-869b-57d7b2c79d60/moneymintidea-com-api](https://parse.bot/marketplace/93e6ccb9-3118-4646-869b-57d7b2c79d60/moneymintidea-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-moneymintidea-com-api-93e6ccb9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Get all available content categories with their post counts. Use category slugs from this endpoint as input to get_posts_by_category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneymintidea-com-api-93e6ccb9/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_post

Get a single post by its URL slug with full content (HTML and plain text). Returns detailed post data including the article body.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Post URL slug (e.g. 'gold-rate-today', 'gold-rate-in-bhopal', 'silver-rate-in-bareilly'). Available from search_posts or get_posts_by_category results. |

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

### get_posts_by_category

Get posts filtered by category slug. Returns paginated results ordered by date (newest first). Use get_categories endpoint to discover available category slugs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug. Accepts exactly one of: anchor-investor, demat-closer-from, diesel-price-today, fixed-deposit, forthcoming-ipo, gold-price-today, ipo-allotment-status, ipo-gmp-price-today-live, ipo-subscription-status-live, market-news, news, personal-finance, petrol-price-today, share-price-target, silver-rate-today, unlisted-share-price, upcoming-ipo, upcoming-nfo, upcoming-sme-ipo, web-stories |
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page, between 1 and 100. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneymintidea-com-api-93e6ccb9/get_posts_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","per_page":"<integer>"}'
```

### search_posts

Search posts by keyword across the entire site. Returns paginated results with title, excerpt, date, and category information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page, between 1 and 100. |
| `query` | string | Yes | Search keyword (e.g. 'gold rate', 'IPO', 'silver price') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneymintidea-com-api-93e6ccb9/search_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>"}'
```
