{
  "openapi": "3.0.1",
  "info": {
    "title": "Sedo Domain Auctions Scraper",
    "description": "Scrape live Sedo expiring domain auctions with reserve price, end time, traffic, TLD, and length filters. Built for domain investors, brand managers, and SEO professionals.",
    "version": "0.1",
    "x-build-id": "aWadpgNGJReKHR6EF"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parseforge~sedo-auctions-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parseforge-sedo-auctions-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/parseforge~sedo-auctions-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parseforge-sedo-auctions-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/parseforge~sedo-auctions-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parseforge-sedo-auctions-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": {
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
          },
          "tlds": {
            "title": "TLDs",
            "uniqueItems": true,
            "type": "array",
            "description": "Restrict to specific top-level domains (e.g. com, net, org, info). Leave empty for all TLDs available in the current auction roster.",
            "items": {
              "type": "string",
              "enum": [
                "com",
                "net",
                "org",
                "info",
                "biz",
                "online",
                "shop",
                "xyz",
                "club",
                "space",
                "website",
                "me",
                "tv",
                "cc",
                "email",
                "name",
                "work",
                "global",
                "photography",
                "bayern",
                "koeln"
              ],
              "enumTitles": [
                ".com",
                ".net",
                ".org",
                ".info",
                ".biz",
                ".online",
                ".shop",
                ".xyz",
                ".club",
                ".space",
                ".website",
                ".me",
                ".tv",
                ".cc",
                ".email",
                ".name",
                ".work",
                ".global",
                ".photography",
                ".bayern",
                ".koeln"
              ]
            }
          },
          "domainContains": {
            "title": "Domain name contains",
            "type": "string",
            "description": "Case-insensitive substring filter on the domain name (e.g. \"crypto\" matches cryptohub.com, ai-crypto.net). Leave blank for no keyword filter."
          },
          "minPrice": {
            "title": "Minimum reserve price (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return domains with a reserve price at or above this USD value."
          },
          "maxPrice": {
            "title": "Maximum reserve price (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return domains with a reserve price at or below this USD value."
          },
          "minTraffic": {
            "title": "Minimum monthly traffic",
            "minimum": 0,
            "type": "integer",
            "description": "Only return domains with a monthly traffic estimate at or above this value."
          },
          "minLength": {
            "title": "Minimum domain length (SLD)",
            "minimum": 1,
            "type": "integer",
            "description": "Only return domains whose second-level name is at least this many characters long (the TLD and dot are not counted, e.g. \"hello.com\" has length 5)."
          },
          "maxLength": {
            "title": "Maximum domain length (SLD)",
            "minimum": 1,
            "type": "integer",
            "description": "Only return domains whose second-level name is at most this many characters long (the TLD and dot are not counted, e.g. \"hello.com\" has length 5)."
          },
          "excludeHyphens": {
            "title": "Exclude domains with hyphens",
            "type": "boolean",
            "description": "Filter out domain names containing hyphens.",
            "default": false
          },
          "excludeNumbers": {
            "title": "Exclude domains with numbers",
            "type": "boolean",
            "description": "Filter out domain names containing digits.",
            "default": false
          },
          "excludeIdn": {
            "title": "Exclude internationalised (IDN) domains",
            "type": "boolean",
            "description": "Filter out IDN domains (those using non-ASCII characters).",
            "default": false
          },
          "includeEnded": {
            "title": "Include already-ended auctions",
            "type": "boolean",
            "description": "By default only auctions still ongoing (end time in the future) are returned. Enable this to include auctions that have already ended in the Sedo export window.",
            "default": false
          },
          "endsBefore": {
            "title": "Auction ends before",
            "type": "string",
            "description": "ISO timestamp (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ). Only return auctions ending on or before this date."
          },
          "endsAfter": {
            "title": "Auction ends after",
            "type": "string",
            "description": "ISO timestamp (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ). Only return auctions ending on or after this date."
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "endTimeAsc",
              "endTimeDesc",
              "priceAsc",
              "priceDesc",
              "trafficDesc",
              "lengthAsc",
              "lengthDesc",
              "domainAsc"
            ],
            "type": "string",
            "description": "Field used to order results before max-items truncation.",
            "default": "endTimeAsc"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}