Moneyhouse.ch Company Registry Scraper avatar

Moneyhouse.ch Company Registry Scraper

Pricing

Pay per event

Go to Apify Store
Moneyhouse.ch Company Registry Scraper

Moneyhouse.ch Company Registry Scraper

Scrape public Moneyhouse.ch search and profile pages for Swiss company leads, UID/VAT enrichment, registry data, procurement, and KYC workflows.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Stas Persiianenko

Stas Persiianenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 hours ago

Last modified

Share

Scrape public Moneyhouse.ch company search results and company profile pages for Swiss B2B lead generation, registry enrichment, procurement checks, KYC workflows, and market research.

What does Moneyhouse.ch Company Registry Scraper do?

Moneyhouse.ch Company Registry Scraper extracts structured company data from public Moneyhouse.ch search and company profile pages.

It can start from search keywords such as restaurant, company names, sectors, or direct Moneyhouse.ch URLs.

The actor saves clean dataset rows that are ready for CSV, Excel, JSON, API integrations, CRM imports, and enrichment pipelines.

Use it when you need a repeatable way to collect Swiss company profile data from Moneyhouse.ch without manually copying search results.

Who is it for?

  • 🎯 Swiss B2B sales teams building targeted lead lists.
  • 🧾 KYC and compliance teams enriching company records.
  • 🏭 Procurement teams mapping suppliers and local businesses.
  • 📊 Market researchers analyzing sectors, locations, and company counts.
  • 🧩 Data teams combining Moneyhouse with Zefix, Local.ch, Search.ch, or CRM data.

Why use this actor?

Moneyhouse is a useful Swiss company-intelligence source because it combines company search, commercial-register snippets, profile summaries, and public company metadata.

This actor turns those public pages into a structured dataset.

You can run small searches for one company or larger searches for industry lead generation.

You can also provide direct profile URLs when you already know the companies you want to enrich.

What data can I extract?

FieldDescription
companyNameCompany name from Moneyhouse
profileUrlPublic Moneyhouse profile URL
addressDisplay address from search/profile pages
streetAddressParsed street address when available
postalCodeSwiss postal code when available
cityCity or locality when available
cantonCanton/region when available
statusCompany status from profile/search metadata
uidVatUID/VAT identifier when available
legalFormLegal form from register information
commercialRegisterNumberCommercial register number
commercialRegistryOfficeRegistry office/canton
industrySector/industry text
purposePublic purpose/description
managementSummaryManagement summary from profile metadata
foundedYearFounding year when visible
lastChangeDateLast change date when visible
sourceUrlSearch/profile URL that produced the row
searchQueryQuery used for keyword searches
scrapedAtISO timestamp for the scrape

How much does it cost to scrape Moneyhouse.ch company data?

The actor uses pay-per-event pricing.

There is a small run-start event and a per-company result event.

Your exact cost depends on how many company rows you request and whether profile enrichment is enabled.

For a quick test, keep maxItems low, for example 10-25 companies.

For production lead lists, increase maxItems after validating that the output matches your workflow.

How to use Moneyhouse.ch Company Registry Scraper

  1. Open the actor on Apify.
  2. Enter one or more searchQueries, such as restaurant, treuhand, or a company name.
  3. Optionally add direct Moneyhouse.ch search or profile URLs in startUrls.
  4. Set maxItems to control the maximum number of companies saved.
  5. Keep includeProfileDetails enabled if you need UID/VAT, legal form, industry, purpose, and register fields.
  6. Start the run.
  7. Export results from the dataset as CSV, JSON, Excel, XML, or via API.

Input options

Search queries

Use searchQueries for keyword-driven collection.

Examples:

  • restaurant
  • treuhand
  • bau ag
  • logistik
  • hotel zurich

Start URLs

Use startUrls when you already have Moneyhouse URLs.

Supported URL types:

  • Search pages like https://www.moneyhouse.ch/en/search?q=restaurant
  • Company profile pages like https://www.moneyhouse.ch/en/company/...

Maximum companies

maxItems is a global cap across all searches and URLs.

Use a low value for testing.

Use a higher value only when you are ready to collect more records.

Profile enrichment

includeProfileDetails opens each profile page and extracts public enrichment fields.

Disable it when you only need fast search-result rows with company names, addresses, and profile URLs.

Example input

{
"searchQueries": ["restaurant"],
"maxItems": 25,
"includeProfileDetails": true
}

Example output

{
"searchQuery": "restaurant",
"sourceUrl": "https://www.moneyhouse.ch/en/search?q=restaurant&page=0",
"profileUrl": "https://www.moneyhouse.ch/en/company/restaurant-hofer-14238791301",
"companyName": "Restaurant Hofer",
"address": "Hauptstrasse 23 | 4232 Fehren",
"streetAddress": "Hauptstrasse 23",
"postalCode": "4232",
"city": "Fehren",
"status": "active",
"uidVat": "CHE-209.826.616",
"legalForm": "Sole proprietorship",
"commercialRegisterNumber": "CH-241.1.014.389-9",
"industry": "Operation of restaurants",
"foundedYear": 2016,
"scrapedAt": "2026-06-18T00:00:00.000Z"
}

Tips for best results

  • ✅ Start with specific keywords rather than very broad terms.
  • ✅ Use direct profile URLs when you need exact company enrichment.
  • ✅ Keep maxItems small for the first run.
  • ✅ Enable profile details for UID/VAT and commercial-register fields.
  • ✅ Combine output with official registry data when compliance accuracy matters.

Common workflows

Swiss B2B sales prospecting

Search by sector keywords, export company names and addresses, and enrich your CRM with profile URLs and UID/VAT values.

Supplier discovery

Search for industry terms and locations to identify potential Swiss vendors or service providers.

KYC enrichment

Submit known Moneyhouse profile URLs and collect public registry fields for internal review.

Market mapping

Run repeat searches for sectors across Switzerland and compare company counts, industries, and localities.

Integrations

You can send the dataset to:

  • Salesforce, HubSpot, Pipedrive, or another CRM.
  • Google Sheets and Excel for manual review.
  • Airtable or Notion for lightweight lead databases.
  • Data warehouses via Apify webhooks or API.
  • Internal KYC systems through the Apify client.

API usage

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/moneyhouse-ch-company-registry-scraper').call({
searchQueries: ['restaurant'],
maxItems: 25,
includeProfileDetails: true,
});
console.log(run.defaultDatasetId);

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/moneyhouse-ch-company-registry-scraper').call(run_input={
'searchQueries': ['restaurant'],
'maxItems': 25,
'includeProfileDetails': True,
})
print(run['defaultDatasetId'])

cURL

curl -X POST 'https://api.apify.com/v2/acts/automation-lab~moneyhouse-ch-company-registry-scraper/runs?token=YOUR_APIFY_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"searchQueries":["restaurant"],"maxItems":25,"includeProfileDetails":true}'

MCP usage

Use this actor from MCP-compatible tools through Apify MCP Server.

MCP URL:

https://mcp.apify.com/?tools=automation-lab/moneyhouse-ch-company-registry-scraper

Add it to Claude Code with:

$claude mcp add apify-moneyhouse "https://mcp.apify.com/?tools=automation-lab/moneyhouse-ch-company-registry-scraper"

Claude Desktop style MCP configuration:

{
"mcpServers": {
"apify-moneyhouse": {
"url": "https://mcp.apify.com/?tools=automation-lab/moneyhouse-ch-company-registry-scraper"
}
}
}

Example prompts using MCP:

  • “Use the Moneyhouse.ch scraper to find 25 Swiss restaurant companies and return names, addresses, and UID numbers.”
  • “Use MCP to enrich these Moneyhouse profile URLs and summarize legal forms and industries.”
  • “Run the Moneyhouse.ch actor and create a CSV-ready list of Swiss logistics companies.”

Data quality notes

Moneyhouse pages can vary by company.

Some companies expose more profile details than others.

Fields that are not visible on a public profile may be omitted from the output row.

The actor keeps rows structured and avoids inventing missing values.

Limitations

This actor extracts public Moneyhouse.ch information visible without logging in.

It does not bypass paywalls, account-only exports, private data, or locked premium sections.

It does not guarantee that every search keyword has enough public results.

For compliance workflows, verify critical registry values against official sources when required.

Legality

This actor is designed to collect publicly available business information.

You are responsible for using the data lawfully and respecting applicable terms, privacy rules, database rights, and internal compliance requirements.

Do not use scraped data for spam, unlawful profiling, or prohibited automated decision-making.

FAQ

Can I scrape private or premium Moneyhouse data?

No. This actor is scoped to public Moneyhouse.ch pages visible without logging in.

Can I use direct Moneyhouse profile URLs?

Yes. Add profile URLs to startUrls and enable profile details for enrichment.

Troubleshooting

Why did I get fewer companies than requested?

The search may have fewer visible public results, duplicate profile URLs may be skipped, or Moneyhouse may change result availability for the query.

Try a broader query or add more search terms.

Why are some enrichment fields missing?

Not every Moneyhouse profile exposes every register or summary field in the same way.

If a value is not visible in public HTML, the actor leaves it empty.

Should I disable profile details?

Disable profile details when you only need fast company names, addresses, and profile links.

Keep it enabled for richer company-data workflows.

Support

If a Moneyhouse layout change breaks extraction, open an issue with your run ID, input JSON, and a short description of the missing or incorrect fields.

Changelog

Initial version supports keyword search, direct start URLs, profile enrichment, and structured company output.