get_blog_post_content
Retrieve complete content from any blog post URL by specifying the link, enabling direct access to detailed information for analysis or integration.
Instructions
Get the full content of a specific blog post by URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL of the blog post to retrieve content from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL of the blog post to retrieve content from",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}