{
  "openapi": "3.0.1",
  "info": {
    "title": "BOOTH Japan Item Prices — Typical Price, Range, In Stock",
    "description": "Type a keyword like VRChat and see what creators on BOOTH Japan charge for it. You get how many items match, the typical price and the lowest-highest range, how many are still in stock, and how many shoppers saved the most popular ones. $0.02 per keyword, no results = no charge. Unofficial.",
    "version": "0.1",
    "x-build-id": "KTF0d63idlAC6vS6Y"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/jpmarketdata~booth-japan-item-price-checker/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-jpmarketdata-booth-japan-item-price-checker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/jpmarketdata~booth-japan-item-price-checker/runs": {
      "post": {
        "operationId": "runs-sync-jpmarketdata-booth-japan-item-price-checker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/jpmarketdata~booth-japan-item-price-checker/run-sync": {
      "post": {
        "operationId": "run-sync-jpmarketdata-booth-japan-item-price-checker",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "keywords"
        ],
        "properties": {
          "keywords": {
            "title": "Keywords to look up",
            "minItems": 1,
            "maxItems": 20,
            "type": "array",
            "description": "One row of numbers per keyword. Each keyword is charged $0.02, and a keyword that finds nothing is not charged. Creators name items in Japanese, so Japanese words find the most (アクスタ, アバター); English works when the item uses it (VRChat). Up to 20 per run, about 15 fit: the run stops reading after 240 seconds and any keyword left unread comes back as `unknown`, not charged.",
            "default": [
              "VRChat"
            ],
            "items": {
              "type": "string"
            }
          },
          "category": {
            "title": "Stay inside one category",
            "type": "string",
            "description": "Leave this empty to look across all of BOOTH. Type a BOOTH category name in Japanese (3Dモデル, グッズ, アクリルフィギュア) and every number then describes that category only: measured 2026-09-08, VRChat has 213,694 items on all of BOOTH and 195,765 inside 3Dモデル. The name has to match BOOTH's own spelling of the category."
          },
          "inStockOnly": {
            "title": "Only items you can still buy",
            "type": "boolean",
            "description": "Off by default, so the counts include items that are sold out or no longer on sale — that is how BOOTH's own search behaves. Turn it on and every number describes only what you can still buy today, and `inStockShare` is then always 1.0. Measured 2026-09-08: アクスタ had 45,692 items listed but 31,980 of them still buyable.",
            "default": false
          },
          "sampleFrom": {
            "title": "Which 60 listings to read",
            "enum": [
              "popular",
              "new"
            ],
            "type": "string",
            "description": "Which 60 listings the shop count, the stock breakdown, the top categories and the optional rows are read from: BOOTH's popular order, or its newest-first order. The typical price and the low-to-high range are always read from the cheapest-first order at the matching rank, so this choice does not move them.",
            "default": "popular"
          },
          "detailSampleSize": {
            "title": "Items opened for wish-list counts",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "How many of those listings get their own item page read, for the wish-list count, the first listing date and whether the item is sold out. One extra request each, about 1.5 seconds. Set it to 0 and `wishListCounts` and `firstListedAt` come back empty and the run is quicker; the item count, the prices and the in-stock share are unaffected. Does not change what you are charged.",
            "default": 2
          },
          "includeIndividualItems": {
            "title": "Also return each listing as a row",
            "type": "boolean",
            "description": "Off by default: a run costs a flat $0.02 per keyword. Turn it on to also get the listings that were read, one row each, up to 60 per keyword, at +$0.002 per row. Each row carries the item number, title, link, starting price, stock state, category and the shop's address on BOOTH, plus the wish-list numbers for the items that were opened.",
            "default": false
          },
          "convertToUsd": {
            "title": "Also show prices in US dollars",
            "type": "boolean",
            "description": "Adds a US dollar copy of the yen price numbers at today's rate. A failed rate lookup never fails the run — you simply get the yen numbers on their own.",
            "default": true
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}