dev.to

Use the Dev.to API via direct curl calls to publish and manage articles.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "dev.to" with this command: npx skills add vm0-ai/vm0-skills/vm0-ai-vm0-skills-dev-to

Dev.to Publisher

Use the Dev.to API via direct curl calls to publish and manage articles.

Official docs: https://developers.forem.com/api/v1

When to Use

Use this skill when you need to:

  • Publish articles to Dev.to

  • Update existing articles

  • Manage drafts

  • Fetch your published articles

Prerequisites

export DEVTO_API_KEY="your-api-key"

Important: When using $VAR in a command that pipes to another command, wrap the command containing $VAR in bash -c '...' . Due to a Claude Code bug, environment variables are silently cleared when pipes are used directly.

bash -c 'curl -s "https://api.example.com" -H "Authorization: Bearer $API_KEY"'

How to Use

All examples below assume you have DEVTO_API_KEY set.

  1. Publish an Article

Write to /tmp/devto_request.json :

{ "article": { "title": "My Awesome Article", "body_markdown": "## Introduction\n\nThis is my article content.\n\n## Conclusion\n\nThanks for reading!", "published": false, "tags": ["javascript", "webdev"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url, published}'

Response:

{ "id": 123456, "url": "https://dev.to/username/my-awesome-article-abc", "published": false }

  1. Publish Immediately

Set published: true to publish right away:

Write to /tmp/devto_request.json :

{ "article": { "title": "Published Article", "body_markdown": "Content here...", "published": true, "tags": ["tutorial"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url, published}'

  1. Publish with Cover Image

Write to /tmp/devto_request.json :

{ "article": { "title": "Article with Cover", "body_markdown": "Content here...", "published": true, "tags": ["webdev", "tutorial"], "main_image": "https://example.com/cover.png" } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url}'

  1. Publish from Markdown File

To publish from a markdown file, first convert it to JSON:

cat article.md | jq -Rs '.' > /tmp/content.json

Write to /tmp/devto_request.json :

{ "article": { "title": "My Article Title", "body_markdown": "Your article content here...", "published": false, "tags": ["programming"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url, published}'

Managing Articles

  1. Get Your Articles

bash -c 'curl -s "https://dev.to/api/articles/me?per_page=10" -H "api-key: ${DEVTO_API_KEY}"' | jq '.[] | {id, title, published, url}'

  1. Get Published Articles Only

bash -c 'curl -s "https://dev.to/api/articles/me/published?per_page=10" -H "api-key: ${DEVTO_API_KEY}"' | jq '.[] | {id, title, url}'

  1. Get Unpublished (Drafts)

bash -c 'curl -s "https://dev.to/api/articles/me/unpublished" -H "api-key: ${DEVTO_API_KEY}"' | jq '.[] | {id, title}'

  1. Get Single Article

Replace <your-article-id> with an actual article ID from the "List My Articles" response (example 5) or from the id field in the create article response (example 1).

bash -c 'curl -s "https://dev.to/api/articles/&#x3C;your-article-id>" -H "api-key: ${DEVTO_API_KEY}"' | jq '{id, title, url, published}'

  1. Update an Article

Replace <your-article-id> with an actual article ID from the "List My Articles" response (example 5) or from the id field in the create article response (example 1).

Write to /tmp/devto_request.json :

{ "article": { "title": "Updated Title", "body_markdown": "Updated content..." } }

Then run:

bash -c 'curl -s -X PUT "https://dev.to/api/articles/&#x3C;your-article-id>" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url}'

  1. Publish a Draft

Replace <your-article-id> with an actual article ID from the "List My Articles" response (example 5) or from the id field in the create article response (example 1).

Write to /tmp/devto_request.json :

{ "article": { "published": true } }

Then run:

bash -c 'curl -s -X PUT "https://dev.to/api/articles/&#x3C;your-article-id>" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{id, url, published}'

Article Parameters

Parameter Type Description

title

string Article title (required)

body_markdown

string Content in Markdown

published

boolean true to publish, false for draft

tags

array Up to 4 tags (lowercase, no spaces)

main_image

string Cover image URL

canonical_url

string Original article URL (for cross-posts)

series

string Series name to group articles

Examples

Tech Tutorial

Write to /tmp/devto_request.json :

{ "article": { "title": "Getting Started with Docker", "body_markdown": "## What is Docker?\n\nDocker is a platform for developing...\n\n## Installation\n\nbash\nbrew install docker\n\n\n## Your First Container\n\nbash\ndocker run hello-world\n", "published": true, "tags": ["docker", "devops", "tutorial", "beginners"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{url}'

Cross-post from Blog

Write to /tmp/devto_request.json :

{ "article": { "title": "My Blog Post", "body_markdown": "Content from my blog...", "published": true, "canonical_url": "https://myblog.com/original-post", "tags": ["webdev"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{url}'

Article in a Series

Write to /tmp/devto_request.json :

{ "article": { "title": "React Hooks - Part 1: useState", "body_markdown": "First part of the series...", "published": true, "series": "React Hooks Deep Dive", "tags": ["react", "javascript", "hooks"] } }

Then run:

bash -c 'curl -s -X POST "https://dev.to/api/articles" -H "api-key: ${DEVTO_API_KEY}" -H "Content-Type: application/json" -d @/tmp/devto_request.json' | jq '{url}'

Guidelines

  • Max 4 tags: Dev.to limits articles to 4 tags

  • Lowercase tags: Tags should be lowercase without spaces

  • Escape markdown: Use jq -Rs to properly escape markdown content

  • Cover images: Must be URLs, not local files

  • Draft first: Set published: false to review before publishing

  • Check response: Always verify the returned URL

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

github-automation

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

github-copilot

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

vm0-cli

No summary provided by upstream source.

Repository SourceNeeds Review