# RDAP Google & Cloudflare Domain Scraper

**Use case:** 

Query RDAP registration data for google.com and cloudflare.com. Extract registrar, creation and expiry dates and nameservers as JSON.

## Input

```json
{
  "domains": [
    "google.com",
    "cloudflare.com"
  ],
  "maxItems": 3,
  "concurrency": 5
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "ldhName": {
    "label": "Ldh Name",
    "format": "text"
  },
  "registry": {
    "label": "Registry",
    "format": "text"
  },
  "registrationDate": {
    "label": "Registration Date",
    "format": "text"
  },
  "expirationDate": {
    "label": "Expiration Date",
    "format": "text"
  },
  "lastChangedDate": {
    "label": "Last Changed Date",
    "format": "text"
  },
  "registrar": {
    "label": "Registrar",
    "format": "text"
  },
  "registrarIanaId": {
    "label": "Registrar Iana Id",
    "format": "number"
  },
  "rdapServer": {
    "label": "Rdap Server",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  },
  "unicodeName": {
    "label": "Unicode Name",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [RDAP Domain Lookup Scraper (WHOIS Replacement)](https://apify.com/parseforge/rdap-domain-lookup-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/rdap-domain-lookup-scraper) to learn more, explore other use cases, and run it yourself.