# Apify Niche Demand Radar (`zinin/apify-niche-demand-radar`) Actor

Produce a current demand-direction snapshot for one declared niche using observed public Apify Store user metrics. Public Store API only, no LLM.

- **URL**: https://apify.com/zinin/apify-niche-demand-radar.md
- **Developed by:** [Tim Zinin](https://apify.com/zinin) (community)
- **Categories:** MCP servers, Marketing
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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/platform/actors/running/actors-in-store#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

## Apify Niche Demand Radar

Produce a current demand-direction snapshot for one declared niche using observed
public Apify Store user metrics. The Actor uses only `GET https://api.apify.com/v2/store`.
It labels observed movement with explicit comparison windows and keeps missing evidence visible.

### Pricing

Pay-per-event:

- `apify-actor-start`: $0.005
- `result-found`: $0.05

### What you get

- A current Store cohort and observed user-metric comparison.
- A deterministic acceleration score and trajectory classification.
- Explicit coverage and confidence when fields are missing.
- One compact dataset report plus a replay-safe `OUTPUT` summary.

### How to use

1. Click **Try for free** and enter a niche with one or more keywords.
2. Choose `7d_vs_30d` or `30d_vs_90d` and set a unique `requestId`.
3. Start the run and read the trajectory and evidence from the dataset row.

### Input

```json
{
  "schemaVersion": "1.0",
  "requestId": "radar-001",
  "niche": "store analytics",
  "keywords": ["store", "analytics"],
  "comparisonWindow": "7d_vs_30d",
  "maxResults": 10,
  "freshnessMinutes": 60,
  "detailLevel": "compact"
}
```

#### Related tools

Related tools for adjacent workflows in in-house factory tooling.

| Actor | What it does |
|---|---|
| [Apify Market Gap Finder](https://apify.com/zinin/apify-market-gap-finder) | Pair it in the in-house factory tooling workflow: Compare user-declared niches against the public Apify Store and rank evidence-backed market gaps |
| [Apify Pricing Benchmark Advisor](https://apify.com/zinin/apify-pricing-benchmark-advisor) | Pair it in the in-house factory tooling workflow: Summarize visible public Apify Store event-price distributions for a declared cohort |
| [Apify Actor Idea Validator](https://apify.com/zinin/apify-actor-idea-validator) | Pair it in the in-house factory tooling workflow: Assess one proposed Apify Actor idea against public Store similarity, activity, quality, competition and... |
| [Apify Portfolio Expansion Planner](https://apify.com/zinin/apify-portfolio-expansion-planner) | Pair it in the in-house factory tooling workflow: Rank user-supplied candidate niches by public Store opportunity and textual adjacency to a user-supplied... |

### FAQ / Support

**Is trajectory a forecast?** No. It is a deterministic label over observed 7, 30, or 90-day Store metrics.

**What this is NOT.** It is not continuous monitoring, an alerting service, or a revenue estimate. Report bugs through the Actor page.

The business envelope is written to KVS key `OUTPUT`; the same `requestId` is a
replay and cannot create another Dataset row or `result-found` charge.

### Output

```json
{
  "schemaVersion": "1.0",
  "requestId": "radar-001",
  "reportType": "niche_demand_snapshot",
  "generatedAt": "2026-07-31T00:00:00.000Z",
  "sampleConfidence": "low",
  "niche": "store analytics",
  "comparisonWindow": "7d_vs_30d",
  "trajectory": "steady",
  "opportunity": { "score": 54.3 }
}
```

# Actor input Schema

## `schemaVersion` (type: `string`):

Contract version.

## `requestId` (type: `string`):

Idempotency key.

## `maxResults` (type: `integer`):

Maximum nested results.

## `freshnessMinutes` (type: `integer`):

Maximum cache age.

## `detailLevel` (type: `string`):

Output detail mode.

## `niche` (type: `string`):

Declared niche to analyze.

## `keywords` (type: `array`):

Unique terms for Store matching.

## `comparisonWindow` (type: `string`):

Observed user-metric comparison window.

## Actor input object example

```json
{
  "schemaVersion": "1.0",
  "requestId": "radar-daily-prefill-001",
  "maxResults": 10,
  "freshnessMinutes": 60,
  "detailLevel": "compact",
  "niche": "store analytics",
  "keywords": [
    "store",
    "analytics"
  ],
  "comparisonWindow": "7d_vs_30d"
}
```

# Actor output Schema

## `OUTPUT` (type: `string`):

Compact business OUTPUT envelope stored in the default key-value store.

# 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 = {
    "schemaVersion": "1.0",
    "requestId": "radar-daily-prefill-001",
    "maxResults": 10,
    "freshnessMinutes": 60,
    "detailLevel": "compact",
    "niche": "store analytics",
    "keywords": [
        "store",
        "analytics"
    ],
    "comparisonWindow": "7d_vs_30d"
};

// Run the Actor and wait for it to finish
const run = await client.actor("zinin/apify-niche-demand-radar").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 = {
    "schemaVersion": "1.0",
    "requestId": "radar-daily-prefill-001",
    "maxResults": 10,
    "freshnessMinutes": 60,
    "detailLevel": "compact",
    "niche": "store analytics",
    "keywords": [
        "store",
        "analytics",
    ],
    "comparisonWindow": "7d_vs_30d",
}

# Run the Actor and wait for it to finish
run = client.actor("zinin/apify-niche-demand-radar").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "schemaVersion": "1.0",
  "requestId": "radar-daily-prefill-001",
  "maxResults": 10,
  "freshnessMinutes": 60,
  "detailLevel": "compact",
  "niche": "store analytics",
  "keywords": [
    "store",
    "analytics"
  ],
  "comparisonWindow": "7d_vs_30d"
}' |
apify call zinin/apify-niche-demand-radar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=zinin/apify-niche-demand-radar",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/lgIrrqT6oN7y7cLeG/builds/amUFtTI3nr7waw03q/openapi.json
