# Migration Map Verifier (`bounce_the_world/my-actor`) Actor

Verify up to 20 old-to-new URL pairs against live redirects, final HTTP status, canonical tags and noindex directives. Export the observed paths and review findings. For migration QA using supplied mappings; no site changes or ranking guarantees.

- **URL**: https://apify.com/bounce\_the\_world/my-actor.md
- **Developed by:** [Bounce The World](https://apify.com/bounce_the_world) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $50.00 / 1,000 url-pair reports

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

## Migration Map Verifier

Check an old-to-new URL mapping before accepting a website migration. Supply 1–20 URL pairs and the explicitly authorized hostnames. Each result includes the observed redirect path, final status and URL, static canonical and noindex metadata, and review findings.

### Input

```json
{"pairs":[{"old_url":"https://example.com/","new_url":"https://example.com/"}],"allowedHosts":["example.com"],"authorized":true}
```

Use only public pages you are authorized to request. Do not include credentials, tokens or personal data in URLs. Add permitted intermediate redirect hostnames explicitly.

### Results

`checks_passed` means the implemented HTTP/static metadata checks found no issue. `review` provides findings such as destination\_mismatch, redirect\_loop, temporary\_redirect\_review, canonical\_mismatch\_review, or noindex\_directive\_review. A missing canonical is a review finding, not proof of an SEO defect. Results export through the Apify dataset.

### Limits

No JavaScript rendering, site changes, content-equivalence assessment, robots.txt interpretation, search indexing verification or ranking guarantee. Exact URL comparisons can flag benign normalization differences. Seven request hops per pair, five-second socket timeout, 1 MB HTML inspection, sequential requests. Private network destinations and nonstandard ports are rejected. Blocking and network failures appear as review findings. Check findings before using them for a migration decision.

Built and operated by BounceTheWorld with AI assistance. This is an initial release without a customer track record.

### Pricing

US$0.05 per saved URL-pair report, including reports with HTTP errors or review findings. Apify also charges US$0.00005 per Actor start at the default 256 MB memory (the start fee scales above 1 GB). A 20-pair run at default memory costs US$1.00005; platform usage is included. No report charge for pairs that were not saved. Your run spending limit can stop processing early, leaving a partial dataset. Set a limit of at least US$1.01 to allow all 20 reports. Invalid input produces no reports, but the start fee still applies.

# Actor input Schema

## `pairs` (type: `array`):

1 to 20 objects with old\_url and new\_url. Include schemes. No secrets or private URLs.

## `allowedHosts` (type: `array`):

Bare hostnames including any permitted intermediate redirects. No wildcard scope.

## `authorized` (type: `boolean`):

Only public web pages you are permitted to request. No credentials, tokens or personal data in URLs.

## Actor input object example

```json
{
  "pairs": [
    {
      "old_url": "https://example.com/",
      "new_url": "https://example.com/"
    }
  ],
  "allowedHosts": [
    "example.com"
  ],
  "authorized": false
}
```

# Actor output Schema

## `results` (type: `string`):

Observed HTTP paths, static metadata and review findings for the supplied URL pairs.

# 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 = {
    "pairs": [
        {
            "old_url": "https://example.com/",
            "new_url": "https://example.com/"
        }
    ],
    "allowedHosts": [
        "example.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("bounce_the_world/my-actor").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 = {
    "pairs": [{
            "old_url": "https://example.com/",
            "new_url": "https://example.com/",
        }],
    "allowedHosts": ["example.com"],
}

# Run the Actor and wait for it to finish
run = client.actor("bounce_the_world/my-actor").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 '{
  "pairs": [
    {
      "old_url": "https://example.com/",
      "new_url": "https://example.com/"
    }
  ],
  "allowedHosts": [
    "example.com"
  ]
}' |
apify call bounce_the_world/my-actor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,bounce_the_world/my-actor"
        }
    }
}

```

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/Ghjwxh8fWnSXw1wRN/builds/CPkNrFBFjvOy0QXn3/openapi.json
