{
  "openapi": "3.0.1",
  "info": {
    "title": "Wallapop Scraper — All Categories",
    "description": "Extract listings from any Wallapop category: Cars, Motos, Tech, Fashion, Real Estate, Home, Sports, Bikes, Collectibles and more. Incremental mode included.",
    "version": "0.1",
    "x-build-id": "yF5Vync6drEjwos1p"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/rastriq~wallapop-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-rastriq-wallapop-scraper",
        "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/rastriq~wallapop-scraper/runs": {
      "post": {
        "operationId": "runs-sync-rastriq-wallapop-scraper",
        "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/rastriq~wallapop-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-rastriq-wallapop-scraper",
        "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",
        "properties": {
          "categoryId": {
            "title": "Category",
            "enum": [
              "100",
              "14000",
              "12800",
              "12465",
              "200",
              "24200",
              "12579",
              "17000",
              "12467",
              "13100",
              "12463",
              "12461",
              "18000",
              "19000",
              "20000",
              "21000",
              "13200",
              "12485"
            ],
            "type": "string",
            "description": "<b>Wallapop category to scrape.</b><br>Leave empty to search across all categories (no category filter)."
          },
          "keywords": {
            "title": "Search keywords",
            "type": "string",
            "description": "<b>Free-text search.</b><br>Examples: <code>iPhone 13</code>, <code>Nike Air Max</code>, <code>sofá esquinero</code>, <code>piso Madrid centro</code>.<br>Leave empty to browse the full category."
          },
          "maxItems": {
            "title": "Max results",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "<b>Hard cap on the number of listings returned.</b><br>50 ≈ under 1 min, 500 ≈ 3–5 min, 5 000 ≈ 20–30 min.<br><i>Note: Cars category is fetched in a single search pass. All other categories require one additional detail request per listing for structured attributes.</i>",
            "default": 50
          },
          "location": {
            "title": "Search center",
            "enum": [
              "madrid",
              "barcelona",
              "valencia",
              "sevilla",
              "bilbao",
              "malaga",
              "zaragoza"
            ],
            "type": "string",
            "description": "City used as the geographic center. Ignored when custom coordinates are set.",
            "default": "madrid"
          },
          "minPrice": {
            "title": "Min price (€)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings priced at or above this amount."
          },
          "maxPrice": {
            "title": "Max price (€)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings priced at or below this amount."
          },
          "minYear": {
            "title": "Min year",
            "minimum": 1950,
            "maximum": 2030,
            "type": "integer",
            "description": "Oldest year to include (applies to Cars and Motos)."
          },
          "maxYear": {
            "title": "Max year",
            "minimum": 1950,
            "maximum": 2030,
            "type": "integer",
            "description": "Newest year to include (applies to Cars and Motos)."
          },
          "sellerType": {
            "title": "Seller type",
            "enum": [
              "private",
              "professional"
            ],
            "type": "string",
            "description": "<b>Filter by seller profile.</b>"
          },
          "orderBy": {
            "title": "Sort order",
            "enum": [
              "most_relevance",
              "newest",
              "price_low_to_high",
              "price_high_to_low",
              "closest"
            ],
            "type": "string",
            "description": "<b>How results are ordered.</b>",
            "default": "most_relevance"
          },
          "distanceKm": {
            "title": "Search radius (km)",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum distance from the search center (only applies with <code>orderBy: Closest</code>)."
          },
          "timeFilter": {
            "title": "Time filter",
            "enum": [
              "today",
              "lastWeek"
            ],
            "type": "string",
            "description": "Restrict results to a recent time window."
          },
          "maxPages": {
            "title": "Max pages",
            "minimum": 0,
            "maximum": 2000,
            "type": "integer",
            "description": "<b>Hard cap on search-result pages swept.</b> ~35 listings per page.<br>Leave at 0 for automatic: enough pages to satisfy <b>Max results</b> in normal mode, or 30 pages (~1 000 listings scanned) in incremental mode, where most listings are skipped as unchanged and more pages must be walked to find the new ones.",
            "default": 0
          },
          "enableCursor": {
            "title": "Incremental mode (delta engine)",
            "type": "boolean",
            "description": "<b>Return only listings that are new or have changed since your last run.</b><br>The actor keeps a ledger of every listing id it has already delivered for this search stream, together with a fingerprint of <code>price / title / reserved / warranty</code>. A listing is returned when its id is unknown (<code>_delta_status: \"new\"</code>) or when its fingerprint moved (<code>_delta_status: \"updated\"</code>). Everything else is skipped and not charged.<br><br>The ledger makes no assumption about feed ordering or timestamps, so a listing that surfaces late in Wallapop's rotating feed is still captured.<br><br><b>First run:</b> captures a full baseline and seeds the ledger.<br><b>Subsequent runs:</b> new and changed listings only.<br><br>Use <code>cursorId</code> to keep parallel searches independent.",
            "default": false
          },
          "cursorId": {
            "title": "Stream id (cursor namespace)",
            "type": "string",
            "description": "<b>Optional.</b> Names the ingestion stream this run belongs to. Runs sharing a stream id share one ledger; different ids are fully independent.<br><br>Leave empty and the actor derives a stable id from your search filters, which is normally what you want. Set it explicitly when several searches should feed a single catalogue (e.g. <code>catalogue-es</code>), or to force a clean rebuild by using a new value.<br><br>Only used when <b>Incremental mode</b> is on."
          },
          "emitSeenIds": {
            "title": "Emit seen ids (delisting detection)",
            "type": "boolean",
            "description": "<b>Write every listing id observed during the sweep to the run's key-value store</b> under <code>SEEN_IDS</code> — including the ones skipped as unchanged.<br><br>With delta ingestion your catalogue never expires rows on its own: a listing that sells simply stops appearing. Compare <code>SEEN_IDS</code> across runs and mark anything absent for N consecutive sweeps as delisted.<br><br>No extra cost.",
            "default": false
          },
          "customLatitude": {
            "title": "Custom latitude",
            "minimum": 27,
            "maximum": 44,
            "type": "number",
            "description": "Latitude override (27.0–44.0)."
          },
          "customLongitude": {
            "title": "Custom longitude",
            "minimum": -18.2,
            "maximum": 5,
            "type": "number",
            "description": "Longitude override (-18.2 to 5.0)."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings. Enable Apify proxy to avoid rate-limiting on large runs."
          },
          "fetchSellerDetails": {
            "title": "Fetch seller details (type, name)",
            "type": "boolean",
            "description": "Enrich each listing with <b>seller_type</b> (<code>consumer</code> / <code>professional</code>), <b>seller_name</b> and <b>seller_slug</b> via a cached call to <code>/api/v3/users/{user_id}</code>.<br>Cost: one extra request per <b>unique seller</b> in the run (not per listing). In local markets, one seller often accounts for many listings, so the overhead is low.<br><b>user_id is always emitted for free</b> regardless of this flag.",
            "default": false
          },
          "geoStopPostalPrefix": {
            "title": "Postal-code prefix to guard",
            "type": "string",
            "description": "Stop pagination when too many consecutive pages fall outside this postal-code prefix.<br>Examples: <code>48</code> for Bizkaia, <code>28</code> for Madrid, <code>08</code> for Barcelona.<br>Leave empty to disable the guard."
          },
          "geoStopThreshold": {
            "title": "Drift threshold (0–1)",
            "minimum": 0.1,
            "maximum": 1,
            "type": "number",
            "description": "Fraction of items on a page that must be <b>outside</b> the postal prefix to count that page as a drift page.<br>Default <code>0.5</code> (50 %). Lower values trigger the stop sooner.",
            "default": 0.5
          },
          "geoStopPages": {
            "title": "Consecutive drift pages to stop",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of <b>consecutive</b> drift pages before pagination stops.<br>Default <code>3</code>. A higher value is more tolerant of occasional out-of-region results.",
            "default": 3
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}