GET
/
v1
/
domain
/
search
Domain & Organization Name Search
curl --request GET \
  --url https://api.projectdiscovery.io/v1/domain/search \
  --header 'X-API-Key: <api-key>'
{
  "count": 123,
  "results": [
    {
      "domain": {
        "domain": "<string>",
        "image_url": "<string>",
        "name": "<string>",
        "organization_slug": "<string>",
        "total_subdomains": 123
      },
      "name": "<string>",
      "organization": {
        "acquirer_slug": "<string>",
        "contact_email": "<string>",
        "domain": "<string>",
        "image_url": "<string>",
        "industries": [
          "<string>"
        ],
        "legal_name": "<string>",
        "linkedin": "<string>",
        "name": "<string>",
        "num_employees_enum": "<string>",
        "org_status": "<string>",
        "short_description": "<string>",
        "slug": "<string>",
        "subsidary_domains": [
          "<string>"
        ],
        "total_subdomains": 123,
        "total_subsidaries": 123,
        "total_subsidary_domains": 123,
        "total_subsidary_subdomains": 123,
        "twitter": "<string>"
      },
      "search_score": 123,
      "type": "organization"
    }
  ],
  "total": 123
}

Authorizations

X-API-Key
string
header
required

Query Parameters

query
string
required

Search query for domain or organization name

limit
integer

Number of results to return

fields
string[]

Fields to include in response (CSV)

scope
enum<string>

Scope of search

Available options:
all,
domains,
orgs

Response

200
application/json

Domain Search Results

The response is of type object.