{
  "openapi": "3.0.1",
  "info": {
    "title": "outbid.lol Scraper - Bids, Clicks & Change Monitoring",
    "description": "Know what every outbid.lol listing pays and what it gets. The full pay-to-rank board in under 3 seconds, with clicks-per-dollar and cost-per-click on every row, plus change monitoring that reports who moved, who was outranked and who joined since your last run. No proxy cost.",
    "version": "0.0",
    "x-build-id": "WCuNq8dMLKOhjc6fB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~outbid-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-outbid-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/memo23~outbid-scraper/runs": {
      "post": {
        "operationId": "runs-sync-memo23-outbid-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/memo23~outbid-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-outbid-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": {
          "startUrls": {
            "title": "Start URLs (optional)",
            "type": "array",
            "description": "outbid.lol board URLs. The board is one paginated resource, so this is optional — leave it empty and the whole board is crawled from rank 1. Only outbid.lol URLs are accepted; anything else fails fast rather than silently scraping the board instead.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minRank": {
            "title": "Minimum rank",
            "minimum": 0,
            "type": "integer",
            "description": "Start from this rank. Pair with 'Maximum rank' to pull a slice such as ranks 50-100 without paying for the rows above it. Empty or 0 = start at rank 1.",
            "default": 0
          },
          "maxRank": {
            "title": "Maximum rank",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this rank. Empty or 0 = the entire board (roughly 900 listings and growing). When this is the only filter set, pagination stops early instead of pulling the whole board and discarding it.",
            "default": 0
          },
          "minBidUsd": {
            "title": "Minimum bid (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only listings bidding at least this much. The board floor is $5 for new listings, though older entries sit as low as $1.",
            "default": 0
          },
          "maxBidUsd": {
            "title": "Maximum bid (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only listings bidding at most this much. Empty or 0 = no ceiling.",
            "default": 0
          },
          "minClicks": {
            "title": "Minimum clicks",
            "minimum": 0,
            "type": "integer",
            "description": "Only listings with at least this many recorded clicks.",
            "default": 0
          },
          "maxClicks": {
            "title": "Maximum clicks",
            "minimum": 0,
            "type": "integer",
            "description": "Only listings with at most this many clicks. Use with a low 'Maximum bid' to surface cheap listings that have not been discovered yet. Empty or 0 = no ceiling.",
            "default": 0
          },
          "minCostPerClickUsd": {
            "title": "Minimum cost per click (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Only listings whose bid divided by clicks is at least this. Listings with zero clicks have no cost per click and are excluded whenever either CPC bound is set.",
            "default": 0
          },
          "maxCostPerClickUsd": {
            "title": "Maximum cost per click (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Only listings whose bid divided by clicks is at most this — the 'who is buying traffic cheaply' query. Empty or 0 = no ceiling.",
            "default": 0
          },
          "keywords": {
            "title": "Include keywords",
            "type": "array",
            "description": "Keep only listings matching any of these (case-insensitive substring). Empty = keep everything.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludeKeywords": {
            "title": "Exclude keywords",
            "type": "array",
            "description": "Drop listings matching any of these. Applied after the include list, so an excluded term always wins.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "keywordFields": {
            "title": "Match keywords against",
            "type": "array",
            "description": "Restrict keyword matching to specific fields. Empty = match across the URL, domain, handle, name and description at once.",
            "items": {
              "type": "string",
              "enum": [
                "url",
                "domain",
                "handle",
                "name",
                "description"
              ],
              "enumTitles": [
                "Destination URL",
                "Domain",
                "X handle",
                "Listing name",
                "Description"
              ]
            },
            "default": []
          },
          "domains": {
            "title": "Domains",
            "type": "array",
            "description": "Only listings pointing at these domains. Subdomains are included automatically, and a bare TLD such as `.ai` matches every listing on it.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "identityTypes": {
            "title": "Listing types",
            "type": "array",
            "description": "The board carries product websites and X profiles. Empty = both.",
            "items": {
              "type": "string",
              "enum": [
                "website",
                "x"
              ],
              "enumTitles": [
                "Website",
                "X (Twitter) handle"
              ]
            },
            "default": []
          },
          "listedWithinHours": {
            "title": "Listed within the last N hours",
            "minimum": 0,
            "type": "integer",
            "description": "Only listings first listed within this many hours. 24 = the last day. Empty or 0 = all dates.",
            "default": 0
          },
          "listedAfter": {
            "title": "Listed on or after",
            "type": "string",
            "description": "ISO date or datetime, e.g. `2026-08-21` or `2026-08-21T12:00:00Z`.",
            "default": ""
          },
          "listedBefore": {
            "title": "Listed on or before",
            "type": "string",
            "description": "ISO date or datetime, e.g. `2026-08-22`.",
            "default": ""
          },
          "monitorChanges": {
            "title": "Track changes since the last run",
            "type": "boolean",
            "description": "Emit `rowType: \"change\"` rows for listings that are new, gone, re-ranked, raised, or gaining clicks. Each carries the previous value and the delta. The first run has nothing to compare against, so it stores a baseline and reports zero changes.",
            "default": false
          },
          "onlyChanges": {
            "title": "Emit only the changes",
            "type": "boolean",
            "description": "Skip the full board and return the change rows alone. This is the cheap scheduled-run setting: a quiet hour costs a handful of rows instead of the entire board. Requires 'Track changes since the last run'.",
            "default": false
          },
          "monitorStoreName": {
            "title": "Snapshot store name",
            "type": "string",
            "description": "Named key-value store holding the snapshot. Defaults to `outbid-monitor`. It must be a named store — a run's default store is created fresh each run, so a snapshot there would never survive to the next run. Give each scheduled monitor its own name so several can track different filters independently.",
            "default": ""
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "rank",
              "bidDesc",
              "bidAsc",
              "clicksDesc",
              "clicksPerDollarDesc",
              "newest",
              "oldest"
            ],
            "type": "string",
            "description": "Ordering of the listing rows. Ranks are unaffected — a row always reports its real board position.",
            "default": "rank"
          },
          "includeBoardStats": {
            "title": "Include board statistics row",
            "type": "boolean",
            "description": "Append one `rowType: \"boardStats\"` row with live visitors, 30-day visitors, visitors since launch, total board revenue, listing count and the sum of all live bids. This row is never billed.",
            "default": true
          },
          "includeTrending": {
            "title": "Include clicks in the last hour",
            "type": "boolean",
            "description": "Fold the board's trending feed in, so listings currently gaining traffic carry a `clicksLastHour` value alongside their lifetime click count. Costs one extra request per run.",
            "default": true
          },
          "enrichEmails": {
            "title": "Find contact emails (opt-in)",
            "type": "boolean",
            "description": "Best-effort: visit each listing's own website and harvest contact emails, phone numbers and social profiles into `contactEmail` and `emailEnrichment`. Every listing on the board already carries its website, so no company-matching guesswork is involved. Billed only for listings where an email is actually found. Adds roughly a second per listing.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum rows",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on rows pushed to the dataset, counting listing and change rows together. Free-tier Apify accounts are capped at 100.",
            "default": 100000
          },
          "maxConcurrency": {
            "title": "Maximum concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Board pages fetched in parallel. The default is comfortable; the site answers 12 concurrent requests in under a second, but there is no reason to push it.",
            "default": 8
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Runs direct by default, so you pay nothing for proxies. outbid.lol fronts the board with Vercel's security checkpoint; the actor clears it in-run on its own, no proxy required. Enable one only if you want the traffic to originate from a specific network — it will be used for both the checkpoint and the scrape.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}