get_article_details
Retrieve comprehensive details about a specific Dev.to article by providing its unique article ID. Useful for accessing article content, metadata, and related information.
Instructions
Get detailed information about a specific article
Args:
article_id: The ID of the article to retrieve
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"title": "Article Id",
"type": "integer"
}
},
"required": [
"article_id"
],
"title": "get_article_detailsArguments",
"type": "object"
}