# Royalmint.com Scraper (`lexis-solutions/royalmint-com-scraper`) Actor

Scrape The Royal Mint UK coin and bullion products data – prices, availability, specs, images and ratings – with this Royal Mint collectibles web scraper for numismatic research, investment tracking and price monitoring.

- **URL**: https://apify.com/lexis-solutions/royalmint-com-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** E-commerce, AI, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$35.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

![banner](https://i.ibb.co/VcgJYfLb/royalmint.png)

## Royal Mint Scraper

The Royal Mint (`royalmint.com`) is the official producer of British coinage, operating for over 1,100 years. Beyond circulation coins, The Royal Mint offers a wide range of collectable coins, commemorative medals, bullion products, and unique gifts — including gold and silver coins, proof sets, and limited-edition releases tied to historical events and cultural milestones.

### Introduction

This Apify scraper extracts structured product data from The Royal Mint website. Given a search results URL or a direct product URL, it collects detailed information including title, price, availability, specifications, images, and ratings — without requiring any account or API key.

### Use Cases

- **Price monitoring**: Track prices of Royal Mint products to spot deals, restocks, or limited releases.
- **Inventory research**: Build datasets of coins and collectibles to support numismatic research or investment decisions.
- **Product cataloguing**: Aggregate Royal Mint listings for comparison platforms or catalogue databases.
- **Market analysis**: Analyse product metadata, categories, and ratings across The Royal Mint's range of collectibles.

### Input

Provide the following fields:

- `startUrls` (array, required): One or more URLs to scrape. Supports:
  - Search result pages: `https://www.royalmint.com/search-results-page?ss360Query=2026`
  - Direct product pages: `https://www.royalmint.com/gifts/sixpence/2026-silver-sixpence/`
- `maxItems` (integer, optional): Maximum number of products to scrape per start URL. Default: `5`.
- `proxyConfiguration` (object, optional): Proxy settings. Defaults to no proxy — The Royal Mint does not require proxies for standard scraping.

### Input Examples

**1) Scrape products matching a keyword**

```json
{
  "startUrls": [
    {
      "url": "https://www.royalmint.com/search-results-page?ss360Query=silver+coin"
    }
  ],
  "maxItems": 20
}
```

**2) Scrape a specific product page directly**

```json
{
  "startUrls": [
    { "url": "https://www.royalmint.com/gifts/sixpence/2026-silver-sixpence/" }
  ],
  "maxItems": 1
}
```

**3) Scrape multiple search terms in one run**

```json
{
  "startUrls": [
    { "url": "https://www.royalmint.com/search-results-page?ss360Query=gold" },
    {
      "url": "https://www.royalmint.com/search-results-page?ss360Query=commemorative"
    }
  ],
  "maxItems": 10
}
```

### Output

Each dataset item represents one Royal Mint product with fields like:

```json
{
  "url": "https://www.royalmint.com/gifts/sixpence/2026-silver-sixpence/",
  "title": "2026 Silver Sixpence",
  "sku": "UK26SPSP",
  "price": 30.0,
  "priceCurrency": "GBP",
  "availability": "Available to Order",
  "description": "The sixpence is traditionally thought to bring luck and good fortune.",
  "descriptionPoints": ["925 sterling silver", "Brilliant uncirculated finish"],
  "imageUrl": "https://www.royalmint.com/globalassets/...product-images/...pack-front.jpg",
  "images": [
    "https://www.royalmint.com/globalassets/...image1.jpg",
    "https://www.royalmint.com/globalassets/...image2.jpg"
  ],
  "brand": "The Royal Mint",
  "category": "Sixpence",
  "breadcrumb": ["Home", "Gifts", "Sixpence"],
  "specifications": {
    "Denomination": "Sixpence",
    "Alloy": "Sterling Silver",
    "Weight": "3g",
    "Diameter": "19.41mm",
    "Quality": "Brilliant Uncirculated",
    "Year": "2026"
  },
  "ratingValue": 5.0,
  "reviewCount": 3,
  "scrapedAt": "2026-02-20T10:30:00.000Z"
}
```

### Why use the Royal Mint Scraper?

- **Fast**: Efficiently retrieves search results and product data without unnecessary overhead.
- **Easy to use**: Simply provide a search URL or product URL and set `maxItems`. No configuration required.
- **Reliable**: Extracts data from JSON-LD structured data embedded in product pages, ensuring consistent results even as the page layout evolves.
- **Well-Maintained**: Actively maintained by Lexis Solutions as part of an 180+ scraper monorepo.

### FAQ

- **Do I need a Royal Mint account to use this scraper?**

  No. The scraper accesses only publicly available product pages and search results.

- **How many products can I scrape?**

  There is no hard limit. Use the `maxItems` field to control the number of results per start URL.

- **Is this scraper compliant with royalmint.com's terms?**

  This scraper accesses only publicly available data. Always review the website's terms of service before scraping at scale.

- **Does the scraper handle pagination?**

  Yes. For search result URLs, the scraper automatically pages through all results up to `maxItems`.

### Need to scrape other collectibles or e-commerce sites?

Check out our other scrapers for similar platforms:

- [Delcampe Scraper](https://apify.com/lexis-solutions/delcampe-scraper) — Collectibles marketplace for coins, stamps, postcards, and antiques
- [Todocoleccion Scraper](https://apify.com/lexis-solutions/todocoleccion-net-scraper) — Spain's leading antiques, art, and collectibles marketplace
- [HiBid Scraper](https://apify.com/lexis-solutions/hibid-com-scraper) — Online auction platform for estates, collectibles, and antiques
- [ShopGoodwill Scraper](https://apify.com/lexis-solutions/shopgoodwill-scraper) — Goodwill's online auction site for secondhand goods and collectibles

***

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find).
We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or
[LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work

If you're happy with our work and scrapers, you're welcome to leave us a
company review [here](https://apify.com/partners/find/lexis-solutions/review)

### Image Credit

Image credit: [royalmint.com](https://www.royalmint.com/)

# Actor input Schema

## `startUrls` (type: `array`):

URLs to scrape. Supports Royal Mint search result pages (e.g. /search-results-page?ss360Query=2026) and individual product pages.

## `maxItems` (type: `integer`):

Maximum number of products to scrape per start URL.

## `proxyConfiguration` (type: `object`):

Select proxies to be used by your crawler.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.royalmint.com/search-results-page?ss360Query=Silver"
    }
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.royalmint.com/search-results-page?ss360Query=Silver"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/royalmint-com-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "startUrls": [{ "url": "https://www.royalmint.com/search-results-page?ss360Query=Silver" }] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/royalmint-com-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.royalmint.com/search-results-page?ss360Query=Silver"
    }
  ]
}' |
apify call lexis-solutions/royalmint-com-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lexis-solutions/royalmint-com-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/h9iblnvIDhctMpObf/builds/faOziJcdI6o7PvKXJ/openapi.json
