# Komorebi Ichi — Japanese Public Auctions (`vasty_quoll/my-actor`) Actor

KSI・国税庁の公的売却品を共通DBから取得。趣味、価格、地域、配送で絞り込み、公式URL・期限・ローカルAIの特徴と根拠・価格比較例を返します。APIキー必須。全国網羅ではありません。

- **URL**: https://apify.com/vasty\_quoll/my-actor.md
- **Developed by:** [すみ](https://apify.com/vasty_quoll) (community)
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## 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

## こもれび市 公的売却データ

国税庁・KSI官公庁オークションの実在する出品を、サイトと共通の保存済みデータから取得します。公式サイトを毎回クロールするActorではありません。全国網羅はしていません。

商品カテゴリ、趣味、ブランド、地域、掲載価格、配送、推薦スコアで絞り込めます。商品ID、公式URL、取得日時、価格種別、数量、状態、期限、受取条件、AIによる特徴と根拠を返します。原文確認・画像観察・AI推定・不明を区別します。

market.referencesは比較例と価格種別を保持します。販売希望価格は成約価格ではありません。十分な比較根拠がなければOpportunity Scoreは不明です。

運営者発行のAPIキーが必要です。キーは秘密入力として保存され、出力されません。1回最大100件、API要求1回、30秒タイムアウト。空結果は正常終了です。

国税庁はPDL1.0に基づく利用、KSIは公式ページに送客する出品紹介です。KSI画像の再利用権を付与しません。各商品の出典・利用条件リンクを保持してください。写真がロット全体を示すとは限りません。AI推定は鑑定ではありません。入札・購入は公式ページで行ってください。

Actor自体の課金は有効化していません。Apifyプラットフォームの実行料金は利用者のプランによります。

# Actor input Schema

## `q` (type: `string`):

商品名・見た目

## `mood` (type: `string`):

写真・説明から付与した雰囲気で絞り込みます。

## `budget` (type: `integer`):

出品単位全体の掲載価格の上限。送料等は含みません。

## `pickup` (type: `string`):

collection は現地引取、shipping は配送可能な商品です。

## `maxResults` (type: `integer`):

1回に取得する商品の最大件数（1〜100）。

## `apiToken` (type: `string`):

運営者発行のキー。出力には含めません。

## `source` (type: `string`):

nta は国税庁、ksi はKSI官公庁オークション。

## `category` (type: `string`):

商品カテゴリ名で絞り込みます。

## `community` (type: `string`):

趣味コミュニティID。APIのcategoriesで確認できます。

## `brand` (type: `string`):

原文で確認できるブランド名で絞り込みます。

## `region` (type: `string`):

出品元の地域名で絞り込みます。

## `lot` (type: `string`):

single は単品、bulk はまとめ売り。

## `status` (type: `string`):

upcoming は予定商品、ended は終了アーカイブ。

## `minMatch` (type: `integer`):

指定した趣味コミュニティとの一致度の下限（0〜100）。

## `minOpportunity` (type: `integer`):

十分な成約比較根拠がある商品の価格評価下限。不明な商品は含みません。

## `minNovelty` (type: `integer`):

珍しさ・話題性スコアの下限（0〜100）。

## `minConfidence` (type: `integer`):

AIによる商品理解の信頼度の下限（0〜100）。

## Actor input object example

```json
{
  "q": "",
  "maxResults": 10
}
```

# Actor output Schema

## `items` (type: `string`):

公式出典・価格種別・期限・趣味属性と根拠を含む商品データ。

# 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("vasty_quoll/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 = {}

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,vasty_quoll/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/E2GZXFpFrXs2u0DSz/builds/4vvENuFEJOXvmDvrW/openapi.json
