get_articles_by_username
Fetch articles authored by a specific user on Dev.to by providing the username as input, enabling quick access to their published content.
Instructions
Get articles written by a specific user
Args:
username: The username of the author
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"username"
],
"title": "get_articles_by_usernameArguments",
"type": "object"
}