This endpoint is designed to extract email addresses from the content of a specified web page. Users can provide a URL, and the service will return any email addresses found within the HTML content of that page.
Endpoint Information
- Method: POST
- Endpoint URL:
https://node.nodetrigger.com/api/email_extractor
- Content Type: application/json
Example Requests
POST /api/email_extractor HTTP/1.1
Host: node.nodetrigger.com
Content-Type: application/json
{
"url": "http://example.com"
}
Notes
- Ensure that the URL provided is accessible and that the web page can be fetched without restrictions.
- Only email addresses present in the HTML content of the page will be extracted.
- If the URL is invalid or the content cannot be accessed, you will receive an error response.
- If no emails are found on the page, the response will contain an empty list.
“`