# Futurepedia Search Scraper (`easyapi/futurepedia-search-scraper`) Actor

Search Futurepedia AI tools by keyword. Extract tool names, descriptions, pricing, ratings, categories, and website links via the search API. 🤖

- **URL**: https://apify.com/easyapi/futurepedia-search-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** AI, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

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

## Futurepedia Search Scraper

Discover and collect AI tools from [Futurepedia](https://www.futurepedia.io), one of the largest AI tool directories online. Enter any keyword—such as image, video, chatbot, or writing—and export a clean list of matching tools with the details you need for research, comparison, and decision-making.

Whether you are building an AI tools list, scouting competitors, or tracking what is trending in a niche, this Actor helps you turn Futurepedia search results into structured data you can analyze, filter, and share.

### Who Is This For?

- **Marketers & growth teams** researching AI products and positioning
- **Founders & product managers** mapping the competitive landscape
- **Analysts & consultants** building market reports and client deliverables
- **Content creators & directory owners** curating AI tool roundups and reviews
- **Investors & researchers** tracking category growth and popular tools

### What You Can Do

- Search Futurepedia by keyword to find relevant AI tools fast
- Collect tool names, descriptions, pricing models, and official websites
- Compare popularity, user favorites, and ratings across results
- Run multiple keywords in one job to cover an entire category
- Export results for spreadsheets, dashboards, or downstream workflows

### What You Get

Each result includes practical fields such as:

- Tool name and short description
- Pricing information (e.g. Free, Freemium, Paid)
- Popularity score and favorite count
- Category and platform details
- Links to the tool page on Futurepedia and the official website
- Search keyword and collection timestamp

### How to Use

1. Enter a **search keyword** (for example: `image`, `SEO`, `customer support`)
2. Set how many results you want to collect
3. Run the Actor and download your dataset

You can also provide a list of keywords to search several topics in a single run.

### Input Example

```json
{
    "query": "image",
    "maxItems": 100
}
```

### Output Example

Each search result is saved as one dataset record:

```json
{
    "query": "image",
    "page": 1,
    "perPage": 12,
    "totalCount": 5557,
    "searchUrl": "https://www.futurepedia.io/search?search=image",
    "itemUrl": "https://www.futurepedia.io/tool/google-gemini",
    "scrapedAt": "2026-07-09T06:10:00.000Z",
    "id": "773b5fff-9b97-4969-9086-f181fbac7317",
    "toolName": "Google Gemini",
    "toolShortDescription": "Multimodal reasoning across text, images, audio, and video.",
    "websiteUrl": "https://gemini.google.com/?utm_source=futurepedia&utm_medium=marketplace&utm_campaign=futurepedia",
    "pricing": ["Freemium"],
    "popularityScore": 1350,
    "favCount": 1310,
    "ratingBreakdown": {
        "accuracy": 4.8,
        "ease_of_use": 4.2,
        "features": 4.7,
        "speed": 4.5,
        "support": 4,
        "value": 4.1
    }
}
```

### Popular Use Cases

- **AI market research** — Understand what tools dominate a category
- **Competitive analysis** — Compare offerings, pricing, and positioning
- **Lead generation** — Build outreach lists for partnerships or sales
- **Content & SEO** — Create “best AI tools for X” articles backed by real data
- **Product discovery** — Find alternatives before buying or integrating a tool
- **Directory building** — Populate internal or public AI tool catalogs

### Why Futurepedia?

Futurepedia is a go-to source for discovering AI software across categories like image generation, automation, productivity, marketing, and more. This Actor saves hours of manual copying and helps you keep your AI tool research accurate, repeatable, and up to date.

# Actor input Schema

## `query` (type: `string`):

Keyword to search on Futurepedia, e.g. image

## `queries` (type: `array`):

Optional batch of search keywords. If provided, query is ignored.

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

Maximum number of search results to collect

## `proxyConfiguration` (type: `object`):

Proxy settings for the actor

## Actor input object example

```json
{
  "query": "image",
  "queries": [],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "query": "image",
    "queries": [],
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/futurepedia-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 = {
    "query": "image",
    "queries": [],
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/futurepedia-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 '{
  "query": "image",
  "queries": [],
  "maxItems": 100
}' |
apify call easyapi/futurepedia-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,easyapi/futurepedia-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/LaYq6cpYcrylCgw7e/builds/PhPz64AooVkbqyBSD/openapi.json
