Discover/mas.gov.sg API
live

mas.gov.sg APIwww.mas.gov.sg

Access MAS Singapore circulation currency coin specs and search MAS news, media releases, speeches, and publications via a structured API.

Endpoints
3
Updated
16h ago
Try it
Number of results to return per page (1 to 100).
Sort order. Accepts: relevancy, date_desc, date_asc.
Search query string.
Offset for pagination (0-based).
Filter by MAS master content section. Accepts: News, Statistics, Regulation, Publications,
Filter by content type. Accepts values such as: Media Releases, Speeches, Parliamentary Re
api.parse.bot/scraper/4fe5ebee-811e-4373-a313-81ab4fbfb7a0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4fe5ebee-811e-4373-a313-81ab4fbfb7a0/search_news' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search MAS news, media releases, speeches, parliamentary replies, publications and other content using the MAS Solr search API. Returns paginated results with facets for content types, sections, and sectors.

Input
ParamTypeDescription
rowsintegerNumber of results to return per page (1 to 100).
sortstringSort order. Accepts: relevancy, date_desc, date_asc.
querystringSearch query string.
startintegerOffset for pagination (0-based).
sectionstringFilter by MAS master content section. Accepts: News, Statistics, Regulation, Publications, Bonds & Bills, Monetary Policy, Development, Singapore Currency, Careers. Omitted returns all sections.
content_typestringFilter by content type. Accepts values such as: Media Releases, Speeches, Parliamentary Replies, Pages, Notices, Guidelines, Consultations, Acts, Circulars, Letters, Staff Papers, Monetary Policy Statements, Forms and Templates, Enforcement Actions, Macroeconomic Reviews, Schemes and Initiatives. Omitted returns all content types.
Response
{
  "type": "object",
  "fields": {
    "start": "integer",
    "total": "integer",
    "facets": "object containing content_types, sections, and sectors facet counts",
    "results": "array of search result objects with title, summary, url, content_type, published_date, and score"
  },
  "sample": {
    "data": {
      "start": 0,
      "total": 176,
      "facets": {
        "sectors": {
          "Banking": 3,
          "Payments": 3
        },
        "sections": {
          "News": 141,
          "Singapore Currency": 18
        },
        "content_types": {
          "Pages": 31,
          "Media Releases": 94
        }
      },
      "results": [
        {
          "url": "https://www.mas.gov.sg/news/parliamentary-replies/2026/written-reply-to-parliamentary-question-on-circulation-of-five-cent-coins",
          "score": 129.63,
          "title": "Written reply to Parliamentary Question on Circulation of Five-Cent Coins",
          "summary": "Written reply to Parliamentary Question on Circulation of Five-Cent Coins",
          "content_type": "Parliamentary Replies",
          "published_date": "2026-02-24T11:00:00Z"
        }
      ]
    },
    "status": "success"
  }
}

About the mas.gov.sg API

This API covers three endpoints against the Monetary Authority of Singapore, returning detailed physical specifications for Singapore circulation coins across three coin series and full-text search across MAS news, media releases, speeches, parliamentary replies, and publications. The get_circulation_coins endpoint exposes 8 fields per coin denomination including metal composition, weight, diameter, thickness, and date of issue. The search_news endpoint returns paginated results with facet counts across content types, sections, and sectors.

Circulation Currency Coins

The get_circulation_coins endpoint returns coin data organized by series — first, second, or third — or all three at once via the series parameter. Each coin object in the response includes denomination, metal_composition, weight, diameter, thickness, edge type, design_description, and date_of_issue. This covers all denominations currently or historically in Singapore circulation, making it useful for numismatic references, currency education tools, or financial data aggregators that need precise physical specifications.

News and Publications Search

The search_news endpoint queries the full MAS content library. The query parameter accepts free-text strings, and results can be filtered by section (News, Statistics, Regulation, Publications, Bonds & Bills) and content_type (Media Releases, Speeches, Parliamentary Replies, Pages, Notices). Each result object includes title, summary, url, content_type, published_date, and a relevance score. The facets object in the response provides counts for content_types, sections, and sectors, which supports building dynamic filter UIs. Pagination is controlled via start (0-based offset) and rows (1–100 per page).

Autocomplete Suggestions

The search_suggest endpoint returns title-matched suggestions ranked by relevance. It accepts a query string, an optional section filter, and a count cap. The response includes a total count and a suggestions array of objects with title and id fields. This endpoint is suited for typeahead search components pointing at MAS content.

Common use cases
  • Build a numismatic reference tool displaying Singapore coin specs including weight, diameter, and metal composition by series
  • Monitor MAS media releases and speeches for regulatory announcements using search_news with content_type filtering
  • Aggregate MAS parliamentary replies into a searchable compliance knowledge base sorted by date_desc
  • Power a typeahead search bar for MAS publications using search_suggest with section-scoped filtering
  • Compare coin physical specifications across Singapore's first, second, and third series for educational content
  • Track sector-specific MAS publications using facet counts from search_news to identify coverage trends over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does MAS have an official public developer API?+
MAS publishes some datasets through the Singapore government open data portal at data.gov.sg, but does not offer a dedicated public developer API for the currency coin specifications or the Solr-backed content search exposed by this API.
What does the `get_circulation_coins` endpoint distinguish between coin series?+
The series parameter accepts first, second, third, or all. Each series object in the response contains a series_name and an array of coin objects. Coins within each series carry denomination, metal composition, weight, diameter, thickness, edge type, design description, and date of issue — so you can directly compare how specifications changed across series for the same denomination.
How does pagination work in `search_news`?+
Results are paginated using the start parameter (0-based offset) and the rows parameter (1 to 100 results per page). The response includes a total count so you can calculate the number of pages. To walk through a large result set, increment start by the value of rows on each subsequent request.
Does the API return the full body text of MAS publications or speeches?+
No — search_news returns title, summary, url, content_type, published_date, and score per result, not the full document body. Each result includes a url pointing to the MAS site where the full content is hosted. You can fork this API on Parse and revise it to add an endpoint that fetches and returns full publication text.
Are MAS statistical data tables or exchange rate feeds available through this API?+
Not currently. The API covers circulation coin specifications and content search across MAS news and publications. Statistical tables, exchange rate series, and interest rate data are not included. You can fork it on Parse and revise to add endpoints targeting those data categories.
Page content last updated . Spec covers 3 endpoints from www.mas.gov.sg.
Related APIs in Government PublicSee all →
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
companieshouse.gov.uk API
Search for UK companies and officers, then access detailed information including company profiles, filing history, charges, and officers with significant control. Get comprehensive corporate records and appointment details all in one place.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
usaspending.gov API
usaspending.gov API
find-and-update.company-information.service.gov.uk API
Search and access detailed information about UK companies registered at Companies House, including company profiles, filing histories, officers, and financial charges. Filter companies by name, status, type, SIC code, and more.
capitol.texas.gov API
Search and monitor Texas Legislature bills, track their progress through legislative stages, and retrieve detailed action histories. Look up legislator contact information, district details, committee assignments, and full committee membership rosters.
mars.nasa.gov API
Explore real-time images, weather data, and location tracking from NASA's Perseverance and Curiosity rovers on Mars, while discovering mission details, rock sample findings, and the latest news from the Mars Exploration Program. Access rover photos, scientific discoveries, and multimedia content to stay updated on current Mars exploration activities.
sbir.gov API
Search and retrieve federal Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) awards by keyword, funding agency, or award details to discover past-funded projects and their outcomes. Browse current funding opportunity topics to identify research areas and find relevant grants for your small business.