Moneyhouse.ch Company Registry Scraper
Pricing
Pay per event
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
13 hours ago
Last modified
Categories
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?
| Field | Description |
|---|---|
companyName | Company name from Moneyhouse |
profileUrl | Public Moneyhouse profile URL |
address | Display address from search/profile pages |
streetAddress | Parsed street address when available |
postalCode | Swiss postal code when available |
city | City or locality when available |
canton | Canton/region when available |
status | Company status from profile/search metadata |
uidVat | UID/VAT identifier when available |
legalForm | Legal form from register information |
commercialRegisterNumber | Commercial register number |
commercialRegistryOffice | Registry office/canton |
industry | Sector/industry text |
purpose | Public purpose/description |
managementSummary | Management summary from profile metadata |
foundedYear | Founding year when visible |
lastChangeDate | Last change date when visible |
sourceUrl | Search/profile URL that produced the row |
searchQuery | Query used for keyword searches |
scrapedAt | ISO 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
- Open the actor on Apify.
- Enter one or more
searchQueries, such asrestaurant,treuhand, or a company name. - Optionally add direct Moneyhouse.ch search or profile URLs in
startUrls. - Set
maxItemsto control the maximum number of companies saved. - Keep
includeProfileDetailsenabled if you need UID/VAT, legal form, industry, purpose, and register fields. - Start the run.
- Export results from the dataset as CSV, JSON, Excel, XML, or via API.
Input options
Search queries
Use searchQueries for keyword-driven collection.
Examples:
restauranttreuhandbau aglogistikhotel 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
maxItemssmall 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 ApifyClientclient = 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
Is it legal to scrape Moneyhouse.ch?
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.
Related scrapers
- Zefix Swiss Company Registry Scraper: https://apify.com/automation-lab/zefix-swiss-company-registry-scraper
- Local.ch Business Directory Scraper: https://apify.com/automation-lab/local-ch-business-directory-scraper
- Search.ch Swiss Business Directory Scraper: https://apify.com/automation-lab/search-ch-swiss-business-directory-scraper
- WLW Germany Supplier Directory Scraper: https://apify.com/automation-lab/wlw-germany-supplier-directory-scraper
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.