# F6s Search Scraper (`getdataforme/f6s-search-scraper`) Actor

Extract comprehensive product and company data from F6s.com with this Apify Actor. Automates scraping search results for ratings, reviews, and insights in structured JSON. Perfect for market research, competitive intelligence, and business automation—customizable, scalable, and code-free.

- **URL**: https://apify.com/getdataforme/f6s-search-scraper.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** Lead generation, Other
- **Stats:** 8 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 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

## F6s Search Scraper

### Introduction

The F6s Search Scraper is a powerful Apify Actor designed to extract detailed product and company information from F6s.com, a leading platform for startups and innovators. It automates the scraping of search results, delivering structured data on products, ratings, companies, and more, enabling users to gather insights efficiently without manual effort. Ideal for researchers, analysts, and businesses seeking reliable data for decision-making.

### Features

- **Comprehensive Data Extraction**: Scrapes key details including product names, URLs, ratings, company info, and review counts from F6s search results.
- **Customizable Request Limits**: Set maximum items to crawl, ensuring control over data volume and API usage.
- **High Reliability**: Built on CheerioCrawler for fast, efficient web scraping with robust error handling.
- **Structured JSON Output**: Delivers clean, machine-readable data perfect for integration into databases or analytics tools.
- **Scalable Performance**: Handles large-scale extractions while respecting rate limits to avoid bans.
- **No Coding Required**: User-friendly interface for quick setup and execution on the Apify platform.
- **Real-Time Monitoring**: Track progress through Apify's dashboard with detailed logs.

### Input Parameters

| Parameter | Type | Required | Description | Example |
|-----------|------|----------|-------------|---------|
| maxItems | integer | No | Maximum number of requests that can be made by this crawler. Limits the crawl to prevent overuse. | 100 |

### Example Usage

#### Input JSON

```json
{
  "maxItems": 50
}
```

#### Output JSON

```json
[
  {
    "productId": 157442,
    "name": "Intrascope.app",
    "alias": "intrascope",
    "url": "https://www.intrascope.app/",
    "rating": 5,
    "score": null,
    "pricingPlansV2": null,
    "company": {
      "actorId": 6516806,
      "alias": "intrascope.app",
      "picture": {
        "imageId": 4754871,
        "extensions": ["jpg"],
        "path": "https://www.f6s.com/content-resource/profiles/",
        "thumbnail": "https://www.f6s.com/content-resource/profiles/6516806_73b4afa2159c3c34221fd7ddb59fa93676703c5a_th1.jpg"
      }
    },
    "reviewsCount": 1,
    "logo": null
  }
]
```

### Use Cases

- **Market Research**: Analyze trending products and companies on F6s to identify market gaps and opportunities.
- **Competitive Intelligence**: Monitor competitors' offerings, ratings, and reviews for strategic insights.
- **Price Monitoring**: Track pricing plans and scores to compare offerings across startups.
- **Content Aggregation**: Collect data for blogs, reports, or databases on innovative products.
- **Academic Research**: Gather structured data for studies on startup ecosystems and innovation.
- **Business Automation**: Integrate scraped data into workflows for automated reporting or CRM updates.

### Installation and Usage

1. Search for "F6s Search Scraper" in the Apify Store
2. Click "Try for free" or "Run"
3. Configure input parameters
4. Click "Start" to begin extraction
5. Monitor progress in the log
6. Export results in your preferred format (JSON, CSV, Excel)

### Output Format

The Actor outputs an array of JSON objects, each representing a scraped product or item from F6s search results. Key fields include:

- `productId`: Unique identifier for the product.
- `name`: Product name.
- `alias`: Short alias or slug.
- `url`: Direct link to the product page.
- `rating`: User rating (e.g., 1-5 scale).
- `score`: Additional scoring metric (may be null).
- `pricingPlansV2`: Pricing details (may be null).
- `company`: Object with company details like actorId, alias, and picture (including thumbnail URL).
- `reviewsCount`: Number of reviews.
- `logo`: Product logo URL (may be null).

Data is clean and structured for easy parsing, with null values indicating unavailable information.

### Support

For custom/simplified outputs or bug reports, please contact:

- Email: support@getdataforme.com
- Subject line: "custom support"
- Contact form: https://getdataforme.com/contact/

We're here to help you get the most out of this Actor!

***

# Actor input Schema

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

Maximum number of requests that can be made by this crawler.

## Actor input object example

```json
{
  "maxItems": 100
}
```

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

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/f6s-search-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("getdataforme/f6s-search-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 getdataforme/f6s-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,getdataforme/f6s-search-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/aWfrjV4vEWl0owswX/builds/ElvXcP4QvquDwCwWV/openapi.json
