Extract_information_from_a_URL
Extract structured data from a given URL by making a POST request, enabling users to retrieve specific information from web pages for analysis or integration.
Instructions
Make a POST request to pipfeed/parse/extract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"example": "https://techcrunch.com/2022/04/18/web-scraping-legal-court/",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}