Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 806 Bytes

File metadata and controls

29 lines (22 loc) · 806 Bytes

Input reference

The hosted Actor accepts one required field:

Field Type Required Example Description
domains string[] Yes ["github.com", "example.org"] Domains or website URLs to inspect.

Validation and normalization

  • Submit between 1 and 10,000 values per run.
  • Website URLs are reduced to their hostname.
  • Whitespace, case, a trailing dot and equivalent URL forms are normalized.
  • Duplicate normalized domains are processed once.
  • Each item must contain a hostname with a domain suffix, such as example.com.

Example:

{
  "domains": [
    "Example.com",
    "https://WWW.Example.com/products",
    "example.org"
  ]
}

The first two values represent the same normalized domain and do not create duplicate work.