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 an website for finding and validation. Returns a job ID for tracking the process.
Payload to submit a new website quality job.
The website URL
https://delpha.io/
The name of the entity
Delpha
The LinkedIn URL of the entity
https://www.linkedin.com/company/delphainc/
The country of the entity
France
Job submitted to assess_website_v16
Invalid website format or missing required fields
Authentication failed - invalid or missing OAuth 2.0 token
Internal server error
Service unavailable
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
}
Retrieve the result and status of a previously submitted website finder and validator job.
The unique identifier of the website job
{"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}
Job succeeded.
Job is still running.
Input validation failed.
Authentication failed - invalid or missing OAuth 2.0 token
Failed to retrieve job.
Job timed out.
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?