{
  "openapi": "3.0.1",
  "info": {
    "title": "Used iPhone Resale Value Japan — Sold Price, Buyback & Ask",
    "description": "What a used phone is really worth in Japan, in one call: dealer ask by grade next to Yahoo! Auctions and Mercari SOLD prices, the resale margin, and the two discounts that move Japanese prices — network restriction (赤ロム) and battery under 80%. Carrier/capacity splits. From $0.02. 日本の中古スマホ相場を1コールで。",
    "version": "0.1",
    "x-build-id": "1lpclxwbobobEW1NP"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/jpmarketdata~japan-phone-resale-value/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-jpmarketdata-japan-phone-resale-value",
        "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~japan-phone-resale-value/runs": {
      "post": {
        "operationId": "runs-sync-jpmarketdata-japan-phone-resale-value",
        "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~japan-phone-resale-value/run-sync": {
      "post": {
        "operationId": "run-sync-jpmarketdata-japan-phone-resale-value",
        "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": [
          "models"
        ],
        "properties": {
          "models": {
            "title": "Phone models",
            "type": "array",
            "description": "One or more handset keywords, valued across every selected source. Be specific — the model, and ideally the capacity: 'iPhone 14 Pro 256GB', 'Xperia 1 V', 'Pixel 8 128GB', 'iPad Air4'. Full-width characters and spacing are normalized automatically. Each model costs $0.02.",
            "default": [
              "iPhone 14 Pro 256GB"
            ],
            "items": {
              "type": "string"
            }
          },
          "sources": {
            "title": "Sources to compare",
            "type": "array",
            "description": "Iosys is a used-phone retailer and returns a DEALER ASK (what you pay to buy stock today), with the condition grade, carrier, capacity, network-restriction marker and battery flag as real fields. Yahoo! Auctions and Mercari (sold out) return SOLD prices — what handsets actually changed hands for. PayPay Flea Market can only return ASKING prices. The price per model is the same whichever sources you pick.",
            "items": {
              "type": "string",
              "enum": [
                "iosys",
                "yahoo_auction",
                "mercari",
                "paypay_flea"
              ],
              "enumTitles": [
                "Iosys — dealer ask, graded stock (イオシス)",
                "Yahoo! Auctions Japan — sold (ヤフオク落札)",
                "Mercari Japan (メルカリ)",
                "PayPay Flea Market — asking (PayPayフリマ)"
              ]
            },
            "default": [
              "iosys",
              "yahoo_auction",
              "mercari"
            ]
          },
          "mercariStatus": {
            "title": "Mercari listing status",
            "enum": [
              "sold_out",
              "on_sale",
              "both"
            ],
            "type": "string",
            "description": "Which Mercari listings to price. 'Sold out' gives real sold comps (comparable with Yahoo! Auctions), 'On sale' gives asking prices, 'Both' returns them as two separate blocks so each keeps a single, honest price basis.",
            "default": "sold_out"
          },
          "modelNameFilter": {
            "title": "Strict model name filter",
            "type": "boolean",
            "description": "On by default. Keeps only listings whose title contains every word of your model keyword, so a search for 'iPhone 14 Pro 256GB' does not price plain iPhone 14 bodies, cases or screen protectors. Measured on the retailer: 27 hits, only 15 of them actually a 14 Pro — including the rest moves the median from ¥92,800 to ¥84,800. Turn off only for very loosely-named models.",
            "default": true
          },
          "maxItemsPerSource": {
            "title": "Max listings sampled per source",
            "minimum": 30,
            "maximum": 300,
            "type": "integer",
            "description": "How many listings to sample per source (and per Mercari status) before filtering and computing the statistics. Larger samples are steadier but slower: Yahoo returns 50 per request, Mercari 120, PayPay 100, Iosys 24, and requests are throttled to one per 1.5 s.",
            "default": 100
          },
          "priceMinJpy": {
            "title": "Minimum price (JPY, optional)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop listings priced below this before computing the statistics. Applied identically to every source so the medians stay comparable. Useful to cut junk, parts and accessory listings out of a model."
          },
          "priceMaxJpy": {
            "title": "Maximum price (JPY, optional)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop listings priced above this before computing the statistics. Applied identically to every source. Useful to cut multi-unit lots out of a model."
          },
          "includeIndividualListings": {
            "title": "Include individual listings",
            "type": "boolean",
            "description": "Off by default: a run costs a flat $0.02 per model, whatever the number of sources. Enable to also get every matched listing from every source (title, price, grade, carrier, capacity, restriction and battery flags, URL) at +$0.002 per listing.",
            "default": false
          },
          "convertToUsd": {
            "title": "Convert prices to USD",
            "type": "boolean",
            "description": "Adds USD statistics next to JPY using the current exchange rate (open.er-api.com, looked up once per run).",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}