Website

A company’s website is often the first touchpoint for customers, partners, and search engines—making it a cornerstone of trusted business data. Delpha’s Website Finder and Website Validator help you maintain clean, verified, and up-to-date web domains by checking reachability, normalizing URLs, and uncovering the most relevant official sites.

Our evaluation covers four key aspects:

  • Completeness: Detects and fills missing website fields.

  • Validity: Verifies that the website is active and accessible.

  • Consistency: Normalizes the URL and checks if it matches the original input.

  • Accuracy: Confirms that the website aligns with contextual data such as company name or legal ID.

The API returns a normalized and resolved URL (following redirects when applicable) along with quality scores. When provided with side fields like a company name or legal ID, Delpha also delivers AI-powered website recommendations with confidence scores—helping you identify the most likely official domain.

With Website Finder and Website Validator, your CRM and analytics stay connected to the right online identities, boosting reliability and customer trust.

Submit website for finding and validation

post

Submit an website for finding and validation. Returns a job ID for tracking the process.

Authorizations
Body

Payload to submit a new website quality job.

websiteany ofRequired

The website URL

Example: https://delpha.io/
stringOptional
or
nullOptional
nameany ofOptional

The name of the entity

Example: Delpha
stringOptional
or
nullOptional
linkedinany ofOptional

The LinkedIn URL of the entity

Example: https://www.linkedin.com/company/delphainc/
stringOptional
or
nullOptional
emailany ofOptional

The email address of the entity

Example: [email protected]
stringOptional
or
nullOptional
countryany ofOptional

The country of the entity

Example: France
stringOptional
or
nullOptional
Responses
202

Job submitted to assess_website_v16

application/json
post
POST /v1/website HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 158

{
  "website": "https://delpha.io/",
  "name": "Delpha",
  "linkedin": "https://www.linkedin.com/company/delphainc/",
  "email": "[email protected]",
  "country": "France"
}
{
  "job_id": "21014abc65004d2781d2e0ef4c9fbb46",
  "message": "Job submitted to assess_website_v16",
  "status": "SUCCESS",
  "status_code": 202
}

Get website finder and validator job status

get

Retrieve the result and status of a previously submitted website finder and validator job.

Authorizations
Path parameters
job_idstringRequired

The unique identifier of the website job

Example: {"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}
Responses
200

Job succeeded.

application/json
get
GET /v1/website/{job_id} HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "message": "Job succeeded.",
  "status": "SUCCESS",
  "status_code": 200,
  "result": {
    "data_type": "website",
    "normalized_value": "https://delpha.io/",
    "label": "OK",
    "scores": {
      "validity": 1,
      "completeness": 1,
      "accuracy": 1,
      "consistency": 1
    },
    "recommendations": [
      {
        "url": "https://delpha.io/",
        "score": 0.996
      }
    ]
  },
  "process_time": 0.123
}

Was this helpful?