Discover/P Bandai API
live

P Bandai APIp-bandai.com

Access Premium Bandai Hong Kong pre-order listings and product search via API. Returns pricing in HKD, sale periods, images, and availability flags.

This API takes change requests — .
Endpoint health
verified 6d ago
search_products
list_preorder_items
2/2 passing latest checkself-healing
Endpoints
2
Updated
28d ago

What is the P Bandai API?

The Premium Bandai Hong Kong API covers 2 endpoints for retrieving pre-order listings and searching products on p-bandai.com/hk. The list_preorder_items endpoint returns currently open pre-orders sorted by most recently opened, with HKD pricing, sale period dates, product images, and pre-order flags included on every result object. search_products adds keyword-driven queries with offset-based pagination and configurable sort order.

This call costs1 credit / call— charged only on success
Try it
Maximum number of pre-order items to return (1-200).
api.parse.bot/scraper/06e6e6ae-e9e7-4100-9301-fe989d214fde/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/06e6e6ae-e9e7-4100-9301-fe989d214fde/list_preorder_items?limit=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace p-bandai-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Premium Bandai HK SDK — browse pre-orders and search products."""
from parse_apis.p_bandai_com_api import PBandai, SortType, ParseError

client = PBandai()

# List currently available pre-order items
for product in client.products.list_preorders(limit=3):
    print(f"[PRE-ORDER] {product.name} — {product.price_currency} {product.price_amount}")
    print(f"  Sale period: {product.sale_start} to {product.sale_end}")

# Search for Gundam products sorted by newest arrivals
result = client.products.search(keyword="Gundam", sort=SortType.NEW_ARRIVAL, limit=3)
first_product = result.first()
if first_product:
    print(f"\nNewest Gundam: {first_product.name}")
    print(f"  Code: {first_product.product_code}, Status: {first_product.sale_status}")
    print(f"  Images: {len(first_product.images)} available")

# Search with price sorting to find cheapest items
try:
    for item in client.products.search(keyword="Dragon Ball", sort=SortType.PRICE_ASC, limit=2):
        print(f"  {item.name}: {item.price_currency} {item.price_amount}")
except ParseError as exc:
    print(f"Request failed: {exc}")

print("exercised: products.list_preorders / products.search (multiple sorts) / ParseError")
All endpoints · 2 totalmissing one? ·

Lists currently available pre-order items on Premium Bandai Hong Kong. Returns newly opened pre-orders that are still accepting orders, ordered by most recently opened. Each item includes pricing in HKD, sale period dates, product images, and pre-order flags.

Input
ParamTypeDescription
limitintegerMaximum number of pre-order items to return (1-200).
Response
{
  "type": "object",
  "fields": {
    "items": "array of pre-order product objects",
    "total_count": "integer"
  },
  "sample": {
    "data": {
      "items": [
        {
          "name": "POKEMON SCALE WORLD SINNOH REGION DIALGA W/O GUM",
          "flags": [
            "PRE_ORDER"
          ],
          "images": [
            "https://p-bandai.com/files/seller-products/ASP0005652001/rHor3XLJxxdP690pHLYx.jpg"
          ],
          "name_zh": "POKEMON SCALE WORLD SINNOH REGION DIALGA W/O GUM",
          "sale_end": "2026-07-12T15:59:59.999Z",
          "sale_start": "2026-07-02T08:00:00Z",
          "sale_status": "On",
          "price_amount": 830,
          "product_code": "A2837362001",
          "product_type": "PreOrder",
          "price_currency": "HKD",
          "area_product_no": "AAP0005652001HK"
        }
      ],
      "total_count": 3
    },
    "status": "success"
  }
}

About the P Bandai API

Pre-order Listings

The list_preorder_items endpoint returns items that are actively accepting pre-orders on Premium Bandai Hong Kong, ordered from most recently opened. Each object in the items array includes HKD pricing, sale period start and end dates, product images, and boolean pre-order flags. The total_count field tells you how many open pre-orders exist at query time. The limit parameter accepts values from 1 to 200, so you can pull a broad snapshot or a narrow slice in a single call.

Product Search

The search_products endpoint accepts a required keyword string and returns matching available and upcoming pre-order products. Pagination is handled manually via offset and limit (1–40 results per page); both values echo back in the response alongside keyword, sort_type, and total_count, making it straightforward to walk through large result sets. The sort_type parameter controls the ordering of results, useful when you want to surface newest listings or price-sorted output.

Response Fields

Both endpoints return items arrays of product objects containing consistent fields: HKD pricing, sale period dates, product image URLs, and pre-order status indicators. total_count is present on both responses, enabling accurate pagination calculations and inventory monitoring over time.

Coverage Scope

This API is scoped to the Hong Kong storefront of Premium Bandai (p-bandai.com/hk). Listings reflect what is publicly accessible on that regional storefront — pre-orders that are open or upcoming. Product data for other regional Premium Bandai storefronts (Japan, US, Taiwan, etc.) is outside the current scope.

Reliability & maintenanceVerified

The P Bandai API is a managed, monitored endpoint for p-bandai.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when p-bandai.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official p-bandai.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor newly opened Premium Bandai HK pre-orders sorted by recency using list_preorder_items
  • Build a price tracker for HKD-denominated Bandai collectibles across sale periods
  • Search for specific Gundam or Kamen Rider product lines via keyword and paginate through results
  • Alert users when a searched product keyword returns new pre-order listings
  • Aggregate sale period dates to forecast pre-order windows for upcoming releases
  • Compile product image URLs and metadata for a fan catalog or comparison tool
  • Track total_count changes over time to detect when pre-order slots open or close
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Premium Bandai have an official public developer API?+
Premium Bandai does not publish an official public developer API or documentation for third-party access to its product or pre-order data.
What does `list_preorder_items` return, and how is it different from `search_products`?+
list_preorder_items returns all currently open pre-orders in a single ranked list (newest first), up to 200 items, with no keyword filter. search_products requires a keyword and supports offset-based pagination up to 40 items per page, making it better suited for targeted lookups. Both return HKD pricing, sale period dates, image URLs, and pre-order flags.
Does the API cover Premium Bandai storefronts outside Hong Kong — Japan, US, or Taiwan?+
Not currently. The API is scoped to the Hong Kong storefront at p-bandai.com/hk. You can fork it on Parse and revise it to add endpoints targeting other regional storefronts.
Does the API return product review data or user ratings?+
Not currently. The API covers pricing, sale periods, images, and pre-order status flags. It does not expose review counts or user ratings. You can fork it on Parse and revise it to add a reviews endpoint if that data is publicly accessible on the storefront.
How fresh is the pre-order data returned by `list_preorder_items`?+
The endpoint reflects the current state of open pre-orders on the Hong Kong storefront at the time of the request. Pre-orders that have closed or sold out since the last call will not appear. Polling the endpoint periodically is the recommended approach for near-real-time monitoring.
Page content last updated . Spec covers 2 endpoints from p-bandai.com.
Related APIs in EcommerceSee all →
p-bandai.jp API
Search and browse Premium Bandai's exclusive product catalog by character, genre, and availability status to find the latest collectibles and merchandise. Get detailed product information and discover new or upcoming releases to stay updated on the newest Bandai items.
shop.sanrio.co.jp API
Search and browse Sanrio products by category, character, and keyword, while viewing detailed product information including pricing and availability from the official Sanrio Online Shop. Get autocomplete suggestions and discover new product releases to find the perfect Sanrio merchandise.
hpoi.net API
Search and browse the Hpoi collectible anime figure database. Retrieve paginated item listings with full filtering support, access detailed product information including specifications, release dates, images, and manufacturer details, and fetch user comments and official gallery images for any item.
alphaomegapeptide.com API
Access data from alphaomegapeptide.com.
bhphotovideo.com API
Search and browse B&H Photo's massive inventory of cameras, electronics, and photography gear with instant access to pricing, specifications, images, and customer reviews. Filter products by category, compare detailed specs, and discover used items all in one integrated platform.
search.rakuten.co.jp API
Search for products on Rakuten's Japanese marketplace and retrieve detailed information including product names, URLs, prices, and shop IDs. Access real-time product listings across Rakuten's catalog, with support for paginated results and automatic detection of Furusato Nozei (Hometown Tax) eligible items.
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.
buyee.jp API
Search and retrieve item listings across Japanese marketplaces — including Yahoo Auctions Japan and Mercari Japan — via the Buyee proxy shopping service. Browse products, check prices, and fetch item details across multiple platforms in one place.