# Sedo .com Domain Auctions Scraper

**Use case:** 

Scrape Sedo .com expiring domain auctions with reserve price, traffic, deadline, and detail URL fields for investment research.

## Input

```json
{
  "maxItems": 100,
  "tlds": [
    "com"
  ],
  "maxReservePrice": 500,
  "minTraffic": 0,
  "includeIdn": true,
  "includeHyphenated": true,
  "includeNumeric": true
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "tld": {
    "label": "TLD",
    "format": "text"
  },
  "reservePriceUsd": {
    "label": "Reserve price",
    "format": "number"
  },
  "traffic": {
    "label": "Traffic",
    "format": "number"
  },
  "endTime": {
    "label": "Auction ends",
    "format": "date"
  },
  "domainLength": {
    "label": "Length",
    "format": "number"
  },
  "isIdn": {
    "label": "IDN",
    "format": "boolean"
  },
  "hasHyphen": {
    "label": "Hyphen",
    "format": "boolean"
  },
  "hasNumbers": {
    "label": "Numbers",
    "format": "boolean"
  },
  "detailUrl": {
    "label": "Sedo URL",
    "format": "link"
  },
  "startTime": {
    "label": "Auction starts",
    "format": "date"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Sedo Domain Auctions Scraper](https://apify.com/automation-lab/sedo-domain-auctions-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/sedo-domain-auctions-scraper) to learn more, explore other use cases, and run it yourself.