# Anime Figure Preorder Scraper (`foo121/anime-figure-scraper`) Actor

Scrape anime & manga figure preorders and listings — title, series, character, manufacturer, price, image, availability. Filter by franchise (Dragon Ball, Naruto, Solo Leveling, One Piece…). For resellers, collectors and market research. Pay per result.

- **URL**: https://apify.com/foo121/anime-figure-scraper.md
- **Developed by:** [ziv shay](https://apify.com/foo121) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 result items

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

## Anime Figure Preorder Scraper

**Anime figure scraper and preorder tracker — pull anime figure preorder data with price, image, and live availability, filtered by franchise.**

Built for figure resellers, collectors, and e-commerce arbitrage sellers who need a clean, structured inventory feed instead of refreshing a storefront by hand. The actor scrapes the Solaris storefront (Shopify products JSON), returning every figure with manufacturer, character, price in USD, and whether the preorder is still open.

Filter by franchise and the actor resolves common aliases automatically (`dbz` → Dragon Ball, `jjk` → Jujutsu Kaisen, `aot` → Attack on Titan, `mha` → My Hero Academia, `op` → One Piece, `csm` → Chainsaw Man, `hxh` → Hunter x Hunter, `eva` → Evangelion, `genshin` → Genshin Impact, and more), so you can build a franchise-specific preorder feed in one run.

### What you get

| Field | Description |
| --- | --- |
| `title` | Full figure product title |
| `series` | Franchise / series the figure belongs to |
| `character` | Character depicted |
| `manufacturer` | Figure manufacturer (e.g. Good Smile, Banpresto) |
| `price` | Price as a number |
| `currency` | Currency code, always `"USD"` |
| `url` | Link to the product page |
| `imageUrl` | Direct link to the product image |
| `available` | `true` if the figure is in stock / preorder is open |

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `series` | string | — | Optional franchise filter. Supports aliases (`dbz`, `jjk`, `aot`, `mha`, `op`, `csm`, `hxh`, `eva`, `genshin`, etc.) |
| `onlyOpenPreorders` | boolean | `true` | Return only figures with open preorders / in-stock availability |
| `maxItems` | integer | `500` | Maximum number of figures to return |

#### Example input

```json
{
  "series": "jjk",
  "onlyOpenPreorders": true,
  "maxItems": 100
}
```

### Example run output

```json
{
  "title": "Jujutsu Kaisen Satoru Gojo 1/7 Scale Figure",
  "series": "Jujutsu Kaisen",
  "character": "Satoru Gojo",
  "manufacturer": "Good Smile Company",
  "price": 189.99,
  "currency": "USD",
  "url": "https://solaris-japan.com/products/jjk-gojo-17-scale",
  "imageUrl": "https://cdn.solaris-japan.com/products/gojo-17.jpg",
  "available": true
}
```

### Use cases

- **Figure resellers** building and refreshing inventory feeds of open preorders before they sell out.
- **Collectors** tracking new releases for a specific franchise with price and image in one place.
- **E-commerce arbitrage sellers** comparing storefront prices against marketplace resale values.
- **Dropshippers and listing automation tools** ingesting structured figure data (title, manufacturer, price, image) directly.

### Pricing

Pay per result — billed only for the figures returned, no subscription.

### Keywords

anime figure scraper, anime figure preorder tracker, figure preorder data, anime figure price scraper, Shopify figure scraper, collectible figure feed, Good Smile preorder scraper, anime merchandise data

# Actor input Schema

## `series` (type: `string`):

Optional. Only return figures from this franchise (case-insensitive substring match). Examples: "Dragon Ball", "Naruto", "Solo Leveling", "One Piece". Common aliases work too (DBZ, AOT, MHA, JJK, SAO, Demon Slayer …). Leave empty for all series.

## `onlyOpenPreorders` (type: `boolean`):

If true (default), only return figures that are currently orderable preorders. Set false to include all listings (sold-out / closed too).

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

Maximum number of figures to output.

## Actor input object example

```json
{
  "series": "Dragon Ball",
  "onlyOpenPreorders": true,
  "maxItems": 500
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("foo121/anime-figure-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("foo121/anime-figure-scraper").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 '{}' |
apify call foo121/anime-figure-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=foo121/anime-figure-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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