summarize-url
InvokeSummarises a URL with Firecrawl.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"url": {
"description": "Public webpage to scrape and summarise.",
"type": "string",
"minLength": 1
}
},
"required": [
"url"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"summary": {
"type": "string"
},
"highlights": {
"type": "array",
"items": {
"type": "string"
}
},
"sourceUrl": {
"type": "string"
}
},
"required": [
"summary",
"highlights",
"sourceUrl"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'http://agent-production-0f54.up.railway.app/entrypoints/summarize-url/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"url": "string"
}
}
'