# OpenPageRank Bulk Checker (`codescraper/openpagerank-bulk-checker`) Actor

Instantly check OpenPageRank (OPR) scores for thousands or even millions of domains at once. This is your fast, highly affordable solution for large-scale SEO and domain analysis. Paste upto 5k, 6k, 7k, 8k, 9k, 10k, 11k, 12k domains at once

- **URL**: https://apify.com/codescraper/openpagerank-bulk-checker.md
- **Developed by:** [CodeScraper](https://apify.com/codescraper) (community)
- **Categories:** SEO tools, Lead generation, Other
- **Stats:** 23 total users, 3 monthly users, 96.7% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$1.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/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

## 🌐 OpenPageRank Bulk Checker – Fetch Domain PageRank Automatically

This Apify actor retrieves PageRank values for multiple domains in bulk using the OpenPageRank API.\
It supports large batches, API key rotation, optional proxies, and outputs results in range of **0–10**.

***

### 🚀 What It Does

The actor processes each domain URL and returns:

- **📊 PageRank value** (0–10)
- **🌐 Original input URL**

It handles:

- ✅ Large batches efficiently
- 🔄 Automatic API key rotation to avoid rate limits (10,000 calls/hour per key)
- 🛡️ Optional proxy usage to prevent IP bans

***

### ⚙️ Input Configuration

| Field       | Type    | Description                                                                                                                            | Default  |
| ----------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------- | -------- |
| urls        | Array   | One or more domain URLs to check. Supported formats: `https://www.example.com`, `http://example.com`, `www.example.com`, `example.org` | required |
| batchSize   | Integer | Number of domains to process per API batch. Larger batches are faster.                                                                 | 100      |
| sortBy      | String  | Sort output by `pageRank` or `domain`.                                                                                                 | pageRank |
| minPageRank | Number  | Minimum PageRank filter. Domains below this value are skipped.                                                                         | 0        |
| maxPageRank | Number  | Maximum PageRank filter. Domains above this value are skipped.                                                                         | 10       |
| proxyType   | String  | Use proxy: `None`, `Apify Proxy`.                                                                                                      | None     |

***

### 🧩 Example Input

```json
{
  "urls": ["https://www.google.com", "example.org", "https://github.com"],
  "batchSize": 50,
  "sortBy": "pageRank",
  "minPageRank": 3,
  "maxPageRank": 10,
  "proxyType": "No Proxy",
}
```

***

### 📊 Example Output

```json
[
  { "inputUrl": "https://www.google.com", "pageRank": 10 },
  { "inputUrl": "https://github.com", "pageRank": 9 }
]
```

***

### 🧠 Features

- 🌍 Fetch PageRank for multiple domains in bulk
- 🔄 Automatic API key rotation to respect rate limits
- 🛡️ Proxy support for uninterrupted large-scale scraping
- 📊 Clean JSON/CSV output ready for Excel or BI tools
- ⚙️ Batch processing for faster results

***

### 💡 Use Cases

- Build SEO or domain authority databases
- Competitor analysis and market research
- Lead generation based on domain authority
- Track domain PageRank trends over time

***

***

### 🧑‍💻 Developer Info

- **Author:** codescraper
- **Contact:** <codescraper011@gmail.com>

***

### 🏷️ Tags

`openpagerank` · `page-rank` · `domain-analysis` · `seo` · `automation` · `apify`

# Actor input Schema

## `urls` (type: `array`):

List of domain URLs to check (e.g., apify.com, www.google.com).

## `batchSize` (type: `integer`):

Number of domains to process per API request batch.

## `sortBy` (type: `string`):

Sort the output by PageRank or domain.

## `minPageRank` (type: `number`):

Filter results with a minimum PageRank value (0–10 scale).

## `maxPageRank` (type: `number`):

Filter results with a maximum PageRank value (0–10 scale).

## `proxyType` (type: `string`):

Optional: Use Apify Proxy to avoid IP rate limits.

## Actor input object example

```json
{
  "urls": [
    "apify.com",
    "www.google.com",
    "https://www.netflix.com"
  ],
  "batchSize": 100,
  "sortBy": "pageRank",
  "proxyType": "None"
}
```

# 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 = {
    "urls": [
        "apify.com",
        "www.google.com",
        "https://www.netflix.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("codescraper/openpagerank-bulk-checker").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 = { "urls": [
        "apify.com",
        "www.google.com",
        "https://www.netflix.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("codescraper/openpagerank-bulk-checker").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 '{
  "urls": [
    "apify.com",
    "www.google.com",
    "https://www.netflix.com"
  ]
}' |
apify call codescraper/openpagerank-bulk-checker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=codescraper/openpagerank-bulk-checker",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/XN0w3AAkGIMyFtQSa/builds/tDfPmZcJRKfRnOVwW/openapi.json
