About this endpoint
What it does
Extracts contact information from a webpage given its URL. The request submits a webpage URL and the response returns detected contact data, including emails, phones, addresses, confidence scores, the source URL, and social links when available.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | URL of the webpage to extract, audit, or validate content from; must be a valid http/https URI. |
Response
Returns a JSON object with emails, phones, and addresses string array fields; a confidence object with numeric emails, phones, and social fields; a source_url string field; and a social_links object whose values are URI strings. The schema does not mark these fields as required, so each may be omitted in the success response.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| emails | String Array | No | Extracted email addresses, if any. |
| phones | String Array | No | Extracted phone numbers, if any. |
| addresses | String Array | No | Extracted physical addresses, if any. |
| confidence | Object | No | Confidence scores for extracted data. |
| confidence.emails | Number | No | Confidence score for emails. |
| confidence.phones | Number | No | Confidence score for phones. |
| confidence.social | Number | No | Confidence score for social links. |
| source_url | String | No | Source webpage URL used for extraction; formatted as a URI. |
| social_links | Object | No | Object map of social link names to URI strings. |