# Outseo Scraper: Full Leaderboard (`blackfalcondata/outseo-scraper`) Actor

Scrape every ranked site on the outseo.lol organic-traffic leaderboard, not just the first page, with each site's click share computed against the full board. Adds the biggest movers, the CTR-by-position benchmarks and the weekly report, as JSON or CSV.

- **URL**: https://apify.com/blackfalcondata/outseo-scraper.md
- **Developed by:** [Black Falcon Data](https://apify.com/blackfalcondata) (community)
- **Categories:** SEO tools, Lead generation, Automation
- **Stats:** 2 total users, 2 monthly users, 90.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

### What does Outseo do?

Outseo Scraper turns the [outseo.lol](https://outseo.lol) organic-traffic leaderboard into structured data. outseo.lol ranks indie software products by verified Google Search Console clicks, which makes it a rare thing: a traffic leaderboard where the numbers come from the sites themselves rather than from a third party's estimate.

The board paginates at 50 entries per page. This actor walks every page, so a run returns the whole leaderboard and computes each site's click share against the full board rather than one page's subtotal. On top of the entries it can return the board's own biggest movers, the published click-through-rate benchmarks per Google position, and the dated weekly report.

There is no search box on outseo.lol and none is invented here: the keyword, domain, rank and click inputs are filters applied to the board, and leaving them empty returns all of it.

**New to Apify?** [Sign up free](https://console.apify.com/sign-up?fpr=1h3gvi) and use the included $5 monthly platform credit to test this actor.

### Key features

- **🧾 The whole board, not the first page:** the leaderboard paginates at 50 entries per page. This actor walks every page and returns **all** of them: 218 ranked sites on the last full measurement, in about five seconds. Reading only the first page returns 23% of the board with no error to tell you so.
- **🧮 Percentages computed against the whole board:** `clicksSharePct`, `medianOrganicClicks` and `totalOrganicClicks` are derived from the complete board, so they mean what they say. Computed from one page instead, the median of this board reads 8,292 clicks rather than 69.5 — the same word for a number 119x out.
- **🚀 Momentum from the source, on the first run:** the board publishes its own current-vs-previous 28-day change, and every row carries it as `moverRank` and `moverChangePct`. You get real momentum on run number one, not after a week of building your own history.
- **📐 Click-through rate by Google position:** one extra row carries the published benchmarks: measured click-through rate for each Google position band, where a typical site's impressions actually sit, the desktop/mobile/tablet split, and the strongest search markets. Each figure arrives with the number of sites behind it, so you can judge how much weight it carries.
- **🗞️ The dated weekly report as data:** the weekly State of Organic Search arrives as a row, with the week it covers and its numbered conclusions as structured fields. Run it on a schedule and you accumulate the series instead of re-reading the page.
- **♻️ Incremental mode:** recurring runs emit and charge only for entries that actually moved: a new rank, a new click count, changed copy or a changed link. A board of 218 rows where six changed costs six rows, not 218. Note that any board filter makes the run a partial view, so removed-from-board detection stays switched off for that run rather than reporting the rows you filtered out as gone.
- **📌 Change classification:** each record carries a `changeType` of NEW / UPDATED / UNCHANGED / REAPPEARED / EXPIRED. Default emits NEW + UPDATED + REAPPEARED; opt into the others with `emitUnchanged` / `emitExpired`.
- **🔔 Notifications:** Telegram, Slack, Discord, WhatsApp Cloud API, and generic webhook out of the box. Pair with incremental for daily new-listing alerts without pipeline glue.
- **📦 Compact mode:** core fields only — rank, domain, clicks, share and the linked URL — for feeding an LLM or building a comparison sheet without carrying every column.
- **🔌 MCP connectors:** export your results into Notion via Apify's MCP connectors — a clean run-summary page, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI. Built on Apify's connector framework, so more destinations open up as their catalog grows.

### What data can you extract from outseo.lol?

Each result includes Core site fields (`listingId`, `rowType`, `rank`, `domain`, `outboundUrl`, `faviconUrl`, `organicClicks`, and `clicksSharePct`, and more) and extended fields (`description` and `detailFetched`). In standard mode, all fields are always present — unavailable data points are returned as `null`, never omitted. In compact mode, only core fields are returned.

### Input

The main inputs are a search keyword and a result limit. Additional filters and options are available in the input schema.

Key parameters:

- **`query`** — Optional. Keeps only entries whose domain or description contains this keyword. Leave empty to get the whole leaderboard. Use a JSON array for several keywords, for example \["ai","video"]. An entry matching any of them is kept.
- **`startUrls`** — Optional. Leaderboard URLs, for example https://outseo.lol/. Leave empty and the whole board is scraped. Pagination is walked for you, so a single board URL is enough. (default: `[]`)
- **`excludeKeywords`** — Drops entries whose domain or description contains any of these. (default: `[]`)
- **`domains`** — Keep only these domains. A domain also matches its subdomains, so example.com keeps blog.example.com but never notexample.com. (default: `[]`)
- **`minRank`** — Start from this position. Pair with the maximum to pull a slice such as 20-50 without paying for the rows above it. Empty or 0 = start at rank 1. (default: `0`)
- **`maxRank`** — Stop at this position. Empty or 0 = no limit. (default: `0`)
- **`minOrganicClicks`** — Keep only entries with at least this many clicks in the board's window. Empty or 0 = no floor. (default: `0`)
- **`maxOrganicClicks`** — Keep only entries with at most this many clicks. Useful for finding smaller sites. Empty or 0 = no ceiling. (default: `0`)
- **`includeSpotlight`** — The board shows one unranked spotlight entry, drawn at RANDOM on every page load. It is off by default because it is not a board position: in incremental mode it would report a different site as new, and last run's as gone, on every single run. Turn it on to capture it. It arrives tagged placement "lucky". (default: `false`)
- **`includeBoardStats`** — One row with the board totals: ranked entries, total organic clicks, top domain, median clicks and the board's own biggest movers. These are the denominators the click-share percentages are computed against. (default: `true`)
- **`includeStats`** — One row from the stats page: measured click-through rate per Google position, where a typical site's impressions sit, the desktop/mobile/tablet split and the strongest search markets, each with the sample size behind it. (default: `true`)
- **`includeWeeklyReport`** — One row from the dated weekly State of Organic Search, with its numbered conclusions and the week it covers. (default: `true`)
- ...and 23 more parameters

### Input examples

**The whole leaderboard** — Leave every filter empty and the run walks all pages of the board, so each click share is computed against the full board rather than one page of it.

→ Every ranked site, plus the board summary row, the click-through-rate benchmarks and the latest weekly report.

```json
{
  "startUrls": [
    "https://outseo.lol/"
  ],
  "maxResults": 0,
  "includeBoardStats": true,
  "includeStats": true,
  "includeWeeklyReport": true
}
```

**Follow a set of competitors** — Pass the domains you care about and only those rows come back, with their real rank on the live board.

→ One row per matching domain: rank, organic clicks, click share, average clicks per day and sponsor placement.

```json
{
  "startUrls": [
    "https://outseo.lol/"
  ],
  "domains": [
    "youtubetotranscript.com",
    "labcanvas.com"
  ],
  "includeBoardStats": false,
  "includeStats": false,
  "includeWeeklyReport": false
}
```

**Small sites that are climbing** — Cap the click count to skip the head of the board, then sort on the mover fields to see which of the long tail is actually growing.

→ Lower-traffic ranked sites with their mover rank and percentage change where the board reports one.

```json
{
  "startUrls": [
    "https://outseo.lol/"
  ],
  "maxOrganicClicks": 5000,
  "includeBoardStats": true,
  "includeStats": false,
  "includeWeeklyReport": false
}
```

**Daily change tracking** — Turn on incremental mode and give the run a state key. Later runs return only the entries that are new or that changed.

→ Only new and changed rows after the first run, each carrying its change type.

```json
{
  "startUrls": [
    "https://outseo.lol/"
  ],
  "incrementalMode": true,
  "stateKey": "outseo-daily",
  "includeBoardStats": true,
  "includeStats": false,
  "includeWeeklyReport": false
}
```

### Output

Each run produces a dataset of structured site records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

### Example site record

```json
{
  "listingId": "73706f852660dce2ea3d02e8b7d69128edb624780cd83efa633894401bdcd15b",
  "rowType": "listing",
  "rank": 1,
  "domain": "youtubetotranscript.com",
  "sourceUrl": "https://youtubetotranscript.com/",
  "outboundUrl": "https://youtubetotranscript.com/?ref=outseo.lol",
  "description": "Get YouTube Transcript and use with chatGPT! 🚀 Paste a YouTube URL to generate the transcript. Copy with a click ⚡️, Change language 🌍 and Translate to 125+ languages. Perfect for note-taking 📝 or...",
  "faviconUrl": "https://www.google.com/s2/favicons?domain=youtubetotranscript.com&sz=128",
  "organicClicks": 1777170,
  "clicksSharePct": 54.8229,
  "avgClicksPerDay": 63470.36,
  "placement": "organic",
  "isSponsored": false,
  "domainOccurrence": 1,
  "entryKey": "youtubetotranscript.com|https://youtubetotranscript.com/",
  "boardUrl": "https://outseo.lol/",
  "clicksWindow": "Last 28 days",
  "boardPage": 1,
  "contentQuality": "full",
  "detailFetched": false,
  "scrapedAt": "2026-08-27T21:17:02.973Z",
  "source": "outseo.lol",
  "contentHash": "037b025e34c6a843b2896558d978b41dd6cfb7373f6a10b663292ed28225c4b2"
}
```

### Incremental fields

When incremental mode is on, each record also carries:

- `changeType` — one of `NEW`, `UPDATED`, `UNCHANGED`, `REAPPEARED`, `EXPIRED`. Default output covers `NEW` / `UPDATED` / `REAPPEARED`; set `emitUnchanged: true` or `emitExpired: true` to opt into the others.
- `isRepost`, `repostOfId`, `repostDetectedAt` — populated when a new listing matches the tracked content of a previously expired one. Set `skipReposts: true` to drop detected reposts from the output.

### How to scrape outseo.lol

1. Go to [Outseo](https://apify.com/blackfalcondata/outseo-scraper?fpr=1h3gvi) in Apify Console.
2. Enter a search keyword.
3. Set `maxResults` to control how many results you need.
4. Click **Start** and wait for the run to finish.
5. Export the dataset as JSON, CSV, or Excel.

### Use cases

### How much does it cost to scrape outseo.lol?

Outseo uses [pay-per-event](https://docs.apify.com/platform/actors/paid-actors/pay-per-event) pricing. You pay a small fee when the run starts and then for each result that is actually produced.

- **Run start:** $0.01 per run
- **Per result:** $0.005 per site record

Example costs:

- 10 results: **$0.06**
- 25 results: **$0.14**
- 100 results: **$0.51**
- 200 results: **$1.01**
- 500 results: **$2.51**

> **Platform usage is billed on top of these prices.** The figures above are Apify event fees only. Compute units and proxy traffic are billed separately by Apify at your actual consumption, and for proxy- or browser-heavy workloads they can exceed the event fees. What you actually pay depends on your own input — how many results you request, whether detail enrichment is on, the run memory you choose, and your proxy settings — so it cannot be stated as a fixed figure here. Every run reports its exact platform usage on the run detail page.
>
> The **Actor Start** event is charged once per GB of run memory (minimum one), so a run configured with 2 GB is charged two start events rather than one.

#### Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of sites that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency — the scenarios below are examples, not predictions.

Example setup: 250 sites per run, daily polling (30 runs/month). Costs scale linearly with the number of sites.

| Churn rate | Full re-scrape run cost | Incremental run cost | Savings vs full re-scrape | Monthly cost after baseline |
|---|---:|---:|---:|---:|
| 5% — stable niche query | $1.26 | $0.07 | $1.19 (94%) | $2.17 |
| 15% — moderate broad query | $1.26 | $0.20 | $1.06 (84%) | $5.93 |
| 30% — high-volume aggregator | $1.26 | $0.39 | $0.88 (69%) | $11.55 |

Full re-scrape monthly cost at the same cadence: $37.80. First month with incremental costs $3.36 / $6.99 / $12.43 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

Platform usage (see the note above) also applies to these figures. Incremental runs consume less of it on result processing, though the fixed per-run overhead stays the same.

### FAQ

#### How many results can I get from outseo.lol?

The number of results depends on the search query and available sites on outseo.lol. Use the `maxResults` parameter to control how many results are returned per run.

#### Does Outseo support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed sites on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

#### Can I integrate Outseo with other apps?

Yes. Outseo works with Apify's [integrations](https://apify.com/integrations?fpr=1h3gvi) to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

#### Can I use Outseo with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the [Apify API](https://docs.apify.com/api/v2). Client libraries are available for JavaScript, Python, and other languages.

#### Can I use Outseo through an MCP Server?

Yes. Apify provides an [MCP Server](https://apify.com/apify/actors-mcp-server?fpr=1h3gvi) that lets AI assistants and agents call this actor directly. Use compact mode, `descriptionMaxLength`, a single `descriptionFormat`, and `excludeEmptyFields` to keep payloads manageable for LLM context windows.

#### Is it legal to scrape outseo.lol?

This actor extracts publicly available data from outseo.lol. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

#### Your feedback

If you have questions, need a feature, or found a bug, please [open an issue](https://apify.com/blackfalcondata/outseo-scraper/issues?fpr=1h3gvi) on the actor's page in Apify Console. Your feedback helps us improve.

### You might also like

- [Betano Odds API — Live and Pre-Match Odds, 14 Countries](https://apify.com/blackfalcondata/betano-odds-api?fpr=1h3gvi) — $3 day pass or $0.002 per call. Betano odds as a REST API: pre-match and live with score and clock,.
- [Betano Odds Scraper — Live + All Markets, 14 Countries](https://apify.com/blackfalcondata/betano-scraper?fpr=1h3gvi) — Scrape Betano betting odds from 14 country books at $3 per 1,000 events: pre-match and in-play.
- [Elpris Scraper — Danish Electricity Prices & Suppliers](https://apify.com/blackfalcondata/elpris-scraper?fpr=1h3gvi) — Scrape every electricity product Danish suppliers report to elpris.dk — supplier, price bands.
- [Google Trends Scraper \[Just 💰$0.49\] — Interest & Related](https://apify.com/blackfalcondata/google-trends-scraper?fpr=1h3gvi) — 💰 $0.49 per 1,000 trending terms — the cheapest paid Google Trends scraper. Scrape live trending.
- [MLB Stats Scraper 💰$2/1K — Rosters & Season Stats](https://apify.com/blackfalcondata/mlb-scraper?fpr=1h3gvi) — Scrape statsapi.mlb.com for every MLB player in a season: full roster with batting, pitching.
- [Sportradar Match Stats Scraper — Lineups, Timeline, Players](https://apify.com/blackfalcondata/sportradar-stats-scraper?fpr=1h3gvi) — Match statistics from Sportradar at $2 per 1,000 matches plus $1 per 1,000 data layers: lineups,.
- [Transfermarkt Scraper \[Just 💰$0.5\] — football market values](https://apify.com/blackfalcondata/transfermarkt-market-value-scraper?fpr=1h3gvi) — 💰 $0.5 per 1,000 records. Scrape transfermarkt.com — player market values with full history ·.

### Getting started with Apify

New to Apify? [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=1h3gvi) — no credit card required.

1. Sign up — $5 platform credit included
2. Open this actor and configure your input
3. Click **Start** — export results as JSON, CSV, or Excel

Need more later? [See Apify pricing](https://apify.com/pricing?fpr=1h3gvi).

### Disclaimer

This actor accesses only publicly available data on outseo.lol. You are responsible for how you use the extracted data — in particular any personal information such as names, phone numbers, or email addresses — and for complying with Outseo's terms of use, applicable data-protection law (including the GDPR where it applies), and the anti-spam rules of your jurisdiction.

This actor is not affiliated with, endorsed by, or connected to Outseo.

### Search keywords

outseo scraper, outseo api, apify outseo, outseo data extraction, outseo.lol scraper, outseo.lol data, outseo.lol api.

# Actor input Schema

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

Optional. Keeps only entries whose domain or description contains this keyword. Leave empty to get the whole leaderboard. Use a JSON array for several keywords, for example \["ai","video"]. An entry matching any of them is kept.

## `startUrls` (type: `array`):

Optional. Leaderboard URLs, for example https://outseo.lol/. Leave empty and the whole board is scraped. Pagination is walked for you, so a single board URL is enough.

## `excludeKeywords` (type: `array`):

Drops entries whose domain or description contains any of these.

## `domains` (type: `array`):

Keep only these domains. A domain also matches its subdomains, so example.com keeps blog.example.com but never notexample.com.

## `minRank` (type: `integer`):

Start from this position. Pair with the maximum to pull a slice such as 20-50 without paying for the rows above it. Empty or 0 = start at rank 1.

## `maxRank` (type: `integer`):

Stop at this position. Empty or 0 = no limit.

## `minOrganicClicks` (type: `integer`):

Keep only entries with at least this many clicks in the board's window. Empty or 0 = no floor.

## `maxOrganicClicks` (type: `integer`):

Keep only entries with at most this many clicks. Useful for finding smaller sites. Empty or 0 = no ceiling.

## `includeSpotlight` (type: `boolean`):

The board shows one unranked spotlight entry, drawn at RANDOM on every page load. It is off by default because it is not a board position: in incremental mode it would report a different site as new, and last run's as gone, on every single run. Turn it on to capture it. It arrives tagged placement "lucky".

## `includeBoardStats` (type: `boolean`):

One row with the board totals: ranked entries, total organic clicks, top domain, median clicks and the board's own biggest movers. These are the denominators the click-share percentages are computed against.

## `includeStats` (type: `boolean`):

One row from the stats page: measured click-through rate per Google position, where a typical site's impressions sit, the desktop/mobile/tablet split and the strongest search markets, each with the sample size behind it.

## `includeWeeklyReport` (type: `boolean`):

One row from the dated weekly State of Organic Search, with its numbered conclusions and the week it covers.

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

Maximum leaderboard entries to return. 0 = the whole board (default). Summary rows are never counted against this.

## `descriptionMaxLength` (type: `integer`):

Truncate description to N chars. 0 = no truncation.

## `compact` (type: `boolean`):

Core fields only (for AI-agent/MCP workflows).

## `incrementalMode` (type: `boolean`):

Compare against previous run state. stateKey is optional: it defaults to a value derived from your search inputs (keyword filter, startUrls), so different filter sets never share state.

## `stateKey` (type: `string`):

Optional. Stable identifier for the tracked search universe. Leave empty to auto-generate from search inputs.

## `emitUnchanged` (type: `boolean`):

When incremental mode is on, also emit board entries whose rank, clicks and copy are unchanged since the last run.

## `emitExpired` (type: `boolean`):

When incremental mode is on, also emit entries that were on the board before and are no longer on it. Any board filter makes a run a partial view of the board, so this is suppressed for filtered runs rather than reporting filtered-out rows as gone.

## `skipReposts` (type: `boolean`):

When incremental, skip entries whose content matches an entry that dropped off the board in a prior run (cross-run duplicate detection).

## `telegramToken` (type: `string`):

Telegram bot token (from @BotFather). Required for Telegram notifications.

## `telegramChatId` (type: `string`):

Telegram chat or channel ID (e.g. "-100123456789"). Required when telegramToken is set.

## `discordWebhookUrl` (type: `string`):

Discord incoming webhook URL. Server Settings → Integrations → Webhooks → New Webhook.

## `slackWebhookUrl` (type: `string`):

Slack incoming webhook URL. api.slack.com/messaging/webhooks.

## `notificationLimit` (type: `integer`):

Maximum number of entries included in each notification message (1–20).

## `notifyOnlyChanges` (type: `boolean`):

When Incremental Mode is on, only send notifications for NEW and UPDATED entries. Has no effect outside incremental mode.

## `whatsappAccessToken` (type: `string`):

WhatsApp Cloud API permanent access token (System User token from Meta Business). Recipient must have messaged the business number within the last 24h (service-conversation window, free since Nov 2024).

## `whatsappPhoneNumberId` (type: `string`):

Your WhatsApp Business phone-number ID (numeric, from Meta dashboard). Required when whatsappAccessToken is set.

## `whatsappTo` (type: `string`):

Recipient phone in E.164 format without + (e.g. "436641234567"). Recipient must have messaged your business number within last 24h.

## `webhookUrl` (type: `string`):

Receives a JSON POST with {metadata, items} after each run. Universal escape hatch for n8n / Make / Zapier / custom backends.

## `webhookHeaders` (type: `object`):

Optional JSON object of custom headers (e.g. {"Authorization":"Bearer ..."}).

## `appConnector` (type: `string`):

Optional. Pick a connected app under Settings → API & Integrations to receive your results. Best-effort across MCP connectors as Apify expands its catalog.

## `mcpIssueTeam` (type: `string`):

Only when the connected app is an issue tracker: the team (name or ID) the summary issue is created under, if that app requires one.

## `descriptionFormat` (type: `string`):

Pick a single description representation. `all` keeps every variant; `text` / `html` / `markdown` drop the others.

## `excludeEmptyFields` (type: `boolean`):

Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards.

## Actor input object example

```json
{
  "startUrls": [],
  "excludeKeywords": [],
  "domains": [],
  "minRank": 0,
  "maxRank": 0,
  "minOrganicClicks": 0,
  "maxOrganicClicks": 0,
  "includeSpotlight": false,
  "includeBoardStats": true,
  "includeStats": true,
  "includeWeeklyReport": true,
  "maxResults": 0,
  "descriptionMaxLength": 0,
  "compact": false,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "skipReposts": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false,
  "descriptionFormat": "all",
  "excludeEmptyFields": false
}
```

# 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 = {
    "maxResults": 0,
    "descriptionFormat": "all",
    "excludeEmptyFields": false
};

// Run the Actor and wait for it to finish
const run = await client.actor("blackfalcondata/outseo-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 = {
    "maxResults": 0,
    "descriptionFormat": "all",
    "excludeEmptyFields": False,
}

# Run the Actor and wait for it to finish
run = client.actor("blackfalcondata/outseo-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 '{
  "maxResults": 0,
  "descriptionFormat": "all",
  "excludeEmptyFields": false
}' |
apify call blackfalcondata/outseo-scraper --silent --output-dataset

```

## MCP server setup

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