Scrape a URL to extract structured recipe data. Tries schema.org parsing first, falls back to LLM extraction.
Input
application/jsonurl
stringuri
Required
A valid URI.
Output
application/jsonimageUrl
stringuri
Optional
URL of the discovered header image, if any.
recipe
ref#scrapedRecipe
Required
No description available.
Errors
ScrapeFailed
Unable to extract recipe data from the provided URL. InvalidUrl
The URL is not reachable or not a valid recipe page. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ScrapeFailed",
"description": "Unable to extract recipe data from the provided URL."
},
{
"name": "InvalidUrl",
"description": "The URL is not reachable or not a valid recipe page."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"recipe"
],
"properties": {
"recipe": {
"ref": "#scrapedRecipe",
"type": "ref"
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "URL of the discovered header image, if any."
}
}
},
"encoding": "application/json"
},
"description": "Scrape a URL to extract structured recipe data. Tries schema.org parsing first, falls back to LLM extraction."
}