VOOZH about

URL: https://apify.com/automation-lab/hitta-se-business-directory-scraper

⇱ Hitta.se Business Directory Scraper for Swedish Leads · Apify


👁 Hitta.se Business Directory Scraper avatar

Hitta.se Business Directory Scraper

Pricing

Pay per event

Go to Apify Store

Hitta.se Business Directory Scraper

Scrape Swedish business listings, contacts, addresses, ratings, and coordinates from Hitta.se search results.

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

8 days ago

Last modified

Categories

Share

Scrape public Swedish business listings from Hitta.se search results. Export company names, phone numbers, public emails, addresses, categories, ratings, review counts, coordinates, and profile URLs for lead generation and market research.

What does Hitta.se Business Directory Scraper do?

Hitta.se Business Directory Scraper turns Hitta.se company search result pages into structured datasets.

It searches combinations such as pizza + Stockholm, tandläkare + Göteborg, or direct Hitta.se search URLs copied from your browser.

The actor reads public search-result data and saves one row per company.

Typical output includes:

  • 🏢 Company name
  • ☎️ Phone number and all phone numbers
  • ✉️ Public email when Hitta.se exposes it
  • 🌐 Website when present
  • 📍 Address, city, municipality, county, latitude, and longitude
  • ⭐ Rating and review count
  • 🏷️ Category information
  • 🔗 Hitta.se profile URL and source search URL

Who is it for?

Sales teams use this actor to build Sweden-focused prospect lists.

Growth marketers use it to discover local businesses by niche and location.

Recruiters and partnership teams use it to map companies in Swedish cities.

Agencies use it to collect local business contact details before outreach campaigns.

Data teams use it to monitor regional market coverage and category density.

Why use this actor?

Hitta.se is one of Sweden's best-known business and contact directories.

Manual searching is slow when you need hundreds or thousands of local companies.

This actor automates the repetitive search, pagination, extraction, and export work.

It is HTTP-only, lightweight, and designed for affordable lead-generation runs.

Example use cases

  • Find restaurants in Stockholm, Malmö, Göteborg, and Uppsala.
  • Collect dentist offices by city for a healthcare SaaS campaign.
  • Build a list of construction firms in Swedish regions.
  • Compare review counts and ratings across local service categories.
  • Enrich CRM workflows with public Hitta.se profile URLs and coordinates.

Data fields

FieldDescription
nameCompany name shown on Hitta.se
urlHitta.se profile URL
phonePrimary phone number
phonesAll phone numbers found in the listing
emailPrimary public email when available
emailsAll public emails found in the listing
websiteCompany website when present
addressCombined address string
streetStreet and street number
postalCodePostal code
cityCity
municipalityMunicipality/community
countyCounty
categoryPrimary category
categoriesCategory list
ratingHitta.se review score
reviewCountNumber of reviews
latitudeLatitude
longitudeLongitude
searchTermSearch keyword used
locationQueryLocation query used
sourceUrlSearch result page URL
pageSearch result page number

How much does it cost to scrape Hitta.se business leads?

This actor uses pay-per-event pricing.

There is a $0.005 start charge per run and a tiered per-result charge for each company saved.

BRONZE users pay $0.0005 per extracted company listing, with lower per-result rates on higher Apify tiers.

The input prefill is intentionally small so your first run is inexpensive.

How to use Hitta.se Business Directory Scraper

  1. Open the actor on Apify.
  2. Enter one or more search terms, such as pizza or byggfirma.
  3. Enter one or more Swedish locations, such as Stockholm or Göteborg.
  4. Set Maximum companies to the number of listings you need.
  5. Run the actor.
  6. Download results as JSON, CSV, Excel, XML, or via API.

Input options

Search terms

Use Swedish keywords, industries, or service categories.

Examples:

  • pizza
  • tandläkare
  • frisör
  • byggfirma
  • advokat

Locations

Use Swedish city or area names.

Examples:

  • Stockholm
  • Göteborg
  • Malmö
  • Uppsala
  • Västerås

Start URLs

You can also paste Hitta.se search result URLs.

This is useful when you already configured a search manually in your browser.

Maximum companies

This is a global cap across all searches.

If you enter multiple search terms and locations, the actor stops when it reaches this total.

Example input

{
"searchTerms":["pizza"],
"locations":["Stockholm"],
"maxResults":25
}

Example output

{
"name":"Restaurang Erikslund",
"phone":"0921-161 62",
"email":"example@example.com",
"address":"Allégatan 50, 96167 Boden",
"city":"Boden",
"category":"Restaurang",
"rating":4.9,
"reviewCount":30,
"latitude":65.8265,
"longitude":21.71464,
"url":"https://www.hitta.se/restaurang-erikslund"
}

Tips for better results

Use Swedish category terms when possible.

Run broader terms first, then narrow down with more specific terms.

Use multiple locations to create regional lists in one run.

Keep test runs small before launching a large CRM export.

Review email availability because not every Hitta.se listing publishes an email address.

Integrations

Export CSV files into HubSpot, Salesforce, Pipedrive, Airtable, or Google Sheets.

Use Apify webhooks to send completed datasets to Make or Zapier.

Use the Apify API to refresh Swedish prospect lists on a schedule.

Combine this actor with email verification or enrichment workflows after export.

API usage with Node.js

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token: process.env.APIFY_TOKEN});
const run =await client.actor('automation-lab/hitta-se-business-directory-scraper').call({
searchTerms:['pizza'],
locations:['Stockholm'],
maxResults:25,
});
console.log(run.defaultDatasetId);

API usage with Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/hitta-se-business-directory-scraper').call(run_input={
'searchTerms':['pizza'],
'locations':['Stockholm'],
'maxResults':25,
})
print(run['defaultDatasetId'])

API usage with cURL

curl-X POST 'https://api.apify.com/v2/acts/automation-lab~hitta-se-business-directory-scraper/runs?token=YOUR_APIFY_TOKEN'\
-H'Content-Type: application/json'\
-d'{"searchTerms":["pizza"],"locations":["Stockholm"],"maxResults":25}'

MCP usage

Use this actor from AI tools through Apify MCP.

Claude Code MCP URL:

https://mcp.apify.com/?tools=automation-lab/hitta-se-business-directory-scraper

Claude Desktop can use the same MCP endpoint with your Apify token.

Claude Code setup example:

$claude mcp add apify-hitta-se https://mcp.apify.com/?tools=automation-lab/hitta-se-business-directory-scraper

Claude Desktop JSON configuration example:

{
"mcpServers":{
"apify-hitta-se":{
"url":"https://mcp.apify.com/?tools=automation-lab/hitta-se-business-directory-scraper"
}
}
}

Example prompts:

  • "Find 50 pizza restaurants in Stockholm and return phone numbers."
  • "Scrape dentists in Göteborg from Hitta.se and summarize cities with the most listings."
  • "Build a CSV of Swedish construction companies in Malmö."

Data quality notes

The actor extracts public data that Hitta.se exposes in search results.

Some listings do not include email addresses or websites.

Ratings are present only when Hitta.se has review data for a company.

Coordinates are usually available for listings with a visiting address.

Performance notes

The actor is HTTP-only and does not launch a browser.

Pagination is handled with Hitta.se search result pages.

The default memory is 256 MB to keep compute cost low.

Legality

This actor scrapes publicly available business listing data.

You are responsible for using the data lawfully and respecting privacy, marketing, and data-protection rules that apply to your use case.

Do not use scraped contact data for unlawful spam or prohibited outreach.

FAQ

Is Hitta.se Business Directory Scraper a lead scraper?

Yes. It is designed for Swedish company lead lists from public Hitta.se business search results.

Does it scrape personal profiles?

No. The MVP focuses on company listings only.

Troubleshooting

Why do some rows have no email?

Hitta.se does not expose an email address for every company. The actor leaves email fields empty when no public email is present.

Why did I get fewer results than requested?

The source may have fewer matching company listings than your maxResults, or the same company may appear across multiple searches and be deduplicated.

Can I scrape people results?

No. Version 0.1 focuses on company listings for lead generation. Person-result scraping is intentionally excluded.

Related scrapers

Changelog

0.1

Initial version for Hitta.se company search result extraction.

Support

If you need a new field from public Hitta.se listings, open an issue on the Apify actor page.

Roadmap

Potential future additions include profile-page enrichment, more category normalization, and optional review extraction.

Summary

Hitta.se Business Directory Scraper helps you collect Swedish local-business leads quickly and consistently.

It is best for sales prospecting, market mapping, local SEO research, and regional CRM enrichment.

You might also like

Hitta.se Business Search Scraper

powerai/hitta-search-scraper

Scrape business listings from Hitta.se (Swedish directory) with automatic pagination and comprehensive company data extraction.

Hitta.se Lead Scraper

odaudlegur/hitta-se-lead-scraper

Retrieve leads on hitta.se, the easy way. This actor will retrieve the business' name, address, email addresses, phone numbers and social links.

Eniro.se Scraper

rainminer/eniro-se-scraper

Scrape Eniro.se business listings, contact details, addresses, ratings, opening hours, websites, and company profile data from Swedish local search pages.

Hemnet.se Scraper - Swedish Real Estate Listings

rigelbytes/hemnet-se-scraper

Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location query with pagination controls and Apify residential proxy support.

👁 User avatar

Rigel Bytes

2

Arbetsformedlingen.se Scraper

shahidirfan/arbetsformedlingen-se-scraper

Scrape Swedish job listings from Arbetsförmedlingen.se instantly. Extract job titles, companies, locations & salary data. Residential proxy required for reliable data collection. Perfect for job market analysis, recruitment automation & labor intelligence.

👁 User avatar

Shahid Irfan

11

5.0

Svenskfast.se Scraper

lexis-solutions/svenskfast-se-scraper

Svenskfast.se scraper for Swedish real estate: extract property listings, prices, addresses, images, broker and financial details at scale for market research, investment analysis, and housing data dashboards.

👁 User avatar

Lexis Solutions

2

Blocket.se Scraper – Cars, Electronics & Marketplace Items

logiover/blocket-se-scraper

Blocket.se unofficial API alternative. Scrape Swedish classifieds and used-car listings without login; export prices, images and seller data to JSON/CSV.

Allabolag Scraper

solidcode/allabolag-scraper

[💰 $1.4 / 1K] Extract Swedish company data from allabolag.se — names, organisation numbers, contacts, addresses, industries, and headline financials. Search by keyword and location, or by allabolag.se search URLs.

Jobbland.se Scraper

lexis-solutions/jobbland-se-scraper

Scrape Jobbland.se with this Jobbland.se scraper: collect Swedish job listings, salaries, locations, categories, company profiles, finances, and application links with flexible URL input, pagination, maxItems limits, and proxy support.

👁 User avatar

Lexis Solutions

6

Hemnet.se Scraper

shahidirfan/hemnet-se-scraper

Extract Swedish real estate listings from Hemnet.se instantly. Scrape property prices, locations, descriptions & contact info for market intelligence. Requires residential proxy for optimal performance. Ideal for real estate analytics, competitive pricing, lead generation & property market research.

👁 User avatar

Shahid Irfan

14

5.0