# nexxt-change Business Listings Scraper (`alakbtu/nexxt-change-business-listings-scraper`) Actor

Unofficial scraper for public business succession listings from nexxt-change.org. Extract sale offers, buyer requests, locations, industries, employee ranges, revenue, asking prices, dates, descriptions, and source URLs as structured data.

- **URL**: https://apify.com/alakbtu/nexxt-change-business-listings-scraper.md
- **Developed by:** [Tural Alakbarov](https://apify.com/alakbtu) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## 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

## nexxt-change Business Listings Scraper

Extract public businesses for sale and buyer requests from Germany's nexxt-change business succession marketplace.

Convert nexxt-change listings into structured data for market research, deal sourcing, business acquisition monitoring, and automation.

> This is an unofficial Actor and is not affiliated with nexxt-change.

### What can this Actor do?

- Extract businesses offered for sale
- Extract requests published by potential buyers
- Open individual listings and collect detailed information
- Process custom filtered nexxt-change search URLs
- Limit the number of listings and search pages
- Export results as JSON, CSV, Excel, XML, or HTML
- Run manually, through the Apify API, or on a schedule
- Connect results to Make, Zapier, Google Sheets, and other tools

### Who is it for?

- Search funds
- Business buyers and investors
- M\&A brokers
- Business succession advisers
- Market researchers
- Lead generation and data teams

### Extracted data

Depending on availability, the Actor can extract:

- Listing title and type
- Advertisement and record IDs
- Sale offer or buyer request
- Location
- Industry
- Employee range
- Annual revenue range
- Asking price range
- Advertiser type
- Listing date
- Short and full descriptions
- International activity
- New-listing status
- Original source URL
- Extraction timestamp

### How to use

1. Select `Businesses for sale` or `Buyer requests`.
2. Optionally enter a filtered nexxt-change search URL.
3. Choose the maximum number of listings.
4. Choose the maximum number of search pages.
5. Enable full listing details if required.
6. Click **Start**.
7. Open the **Output** tab or export the dataset.

### Input example

- `listingType`: `sale`
- `maxItems`: `100`
- `maxPages`: `10`
- `includeDetails`: `true`

### Output

The output contains structured fields such as listing type, title, location, industry, employee range, annual revenue, asking price, listing date, description, and source URL.

### Automation and integrations

Use this Actor with:

- Apify API
- Scheduled runs
- Webhooks
- Make
- Zapier
- Google Sheets
- AI agents and MCP-compatible tools

### Important information

This Actor extracts publicly accessible listing information and uses conservative request limits.

Website structures can change. If you notice missing or incorrect data, create an issue on the Actor page.

Users are responsible for complying with applicable laws, privacy requirements, and the source website's terms when using exported data.

### Pricing

The final price and maximum run cost are displayed in Apify Console before running the Actor.

### Support

If the Actor does not work correctly or you need an additional output field, create an issue through the Actor page.

# Actor input Schema

## `listingType` (type: `string`):

Choose whether to extract businesses for sale or requests from potential buyers.

## `startUrl` (type: `string`):

Optional filtered nexxt-change search URL. Leave empty to use the selected listing type.

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

Maximum number of listings to save.

## `maxPages` (type: `integer`):

Maximum number of search-result pages to process.

## `includeDetails` (type: `boolean`):

Open each listing and extract descriptions, revenue, asking price, employee range, and other details.

## Actor input object example

```json
{
  "listingType": "sale",
  "maxItems": 20,
  "maxPages": 2,
  "includeDetails": true
}
```

# Actor output Schema

## `results` (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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("alakbtu/nexxt-change-business-listings-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("alakbtu/nexxt-change-business-listings-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 '{}' |
apify call alakbtu/nexxt-change-business-listings-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,alakbtu/nexxt-change-business-listings-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/rMZfkJdG1QBCfKcyY/builds/DrJVn8AsivHjJrBDv/openapi.json
