moneymintidea.com APImoneymintidea.com ↗
Access gold rates, silver rates, IPO details, share price targets, and financial articles from MoneyMintIdea.com via 4 structured JSON endpoints.
curl -X GET 'https://api.parse.bot/scraper/4f13a694-ebe8-4849-918d-743ca7c499a6/search_posts' \ -H 'X-API-Key: $PARSE_API_KEY'
Search posts by keyword across the entire site. Returns paginated results with title, excerpt, date, and category information.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Search keyword (e.g. 'gold rate', 'IPO', 'silver price') |
| per_page | integer | Number of results per page, between 1 and 100. |
{
"type": "object",
"fields": {
"page": "integer current page",
"posts": "array of post objects with id, title, slug, date, link, categories, excerpt",
"total": "integer total matching posts",
"per_page": "integer results per page",
"total_pages": "integer total pages available"
},
"sample": {
"page": 1,
"posts": [
{
"id": 36482,
"date": "2026-06-10T23:45:32",
"link": "https://moneymintidea.com/gold-rate-in-bhopal/",
"slug": "gold-rate-in-bhopal",
"title": "Todays Gold Rate in Bhopal, 18, 22 24 Carat Gold Price on ([today_date])",
"excerpt": "Bhopal one of Madhya Pradesh Leading jewellery market...",
"categories": [
366
]
}
],
"total": 441,
"per_page": 3,
"total_pages": 147
}
}About the moneymintidea.com API
The MoneyMintIdea API exposes financial content from moneymintidea.com across 4 endpoints, covering gold and silver rates, IPO information, share price targets, and related investment articles. The search_posts endpoint lets you query the full site by keyword and returns paginated results with titles, excerpts, dates, and category metadata. The get_post endpoint retrieves full article content — both HTML and plain text — for any individual post.
Endpoints and Data Coverage
Four endpoints cover the main content on MoneyMintIdea. search_posts accepts a required query string (e.g. 'gold rate', 'IPO', 'silver price') plus optional page and per_page parameters (1–100 results per page). It returns an array of post objects, each containing id, title, slug, date, link, categories, and excerpt, along with total, total_pages, and per_page for pagination control. This makes it suitable for broad discovery across the site's financial topics.
Category and Post Browsing
get_categories returns all available content categories with their id, name, slug, and post count. You pass those category slugs to get_posts_by_category to retrieve posts scoped to a single topic — for example, anchor-investor, fixed-deposit, or diesel-price-today. Results are ordered newest-first and support the same page and per_page pagination as search. The response includes a category field confirming the slug used.
Full Post Content
get_post takes a slug (obtained from search or category results) and returns the full article. Key fields include content_html and content_text, both truncated to the first 5000 characters, along with title, excerpt, date (ISO datetime), modified, link, and categories as an array of category IDs. This is the primary endpoint for retrieving the body of any rate-update article or IPO analysis piece.
- Track daily gold rate updates by querying
search_postswith 'gold rate today' and readingcontent_textfromget_post. - Monitor IPO announcements by browsing the anchor-investor category via
get_posts_by_category. - Build a silver price tracker using
search_postswith 'silver rate' and paginating through results. - Aggregate share price target articles by searching for specific stock tickers or company names.
- Discover trending financial topics by listing categories and their post counts via
get_categories. - Retrieve full article content for fixed-deposit rate comparisons using the
fixed-depositcategory slug. - Feed a financial news digest by pulling the latest posts from multiple categories and extracting their
excerptanddatefields.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does MoneyMintIdea have an official developer API?+
What does `get_post` actually return, and is the full article body available?+
content_html and content_text for the article body, each capped at the first 5000 characters. It also includes title, excerpt, date, modified, link, slug, and categories (as an array of category IDs). For most rate-update articles, 5000 characters covers the substantive content.Can I filter posts by multiple categories at once?+
get_posts_by_category accepts exactly one category slug per request. Multi-category filtering is not currently supported. The API covers single-category browsing and keyword search via search_posts. You can fork it on Parse and revise to add multi-category filtering as a new endpoint.Are real-time live price tickers exposed, or only article-based rates?+
date and modified fields. You can fork this API on Parse and revise it to poll the newest posts on a schedule for near-real-time rate monitoring.Is historical price data queryable by date range?+
date fields are returned in results, so you can filter client-side after fetching. You can fork this API on Parse and revise to add date-range filtering as an endpoint parameter.