Skip to main content

Hashnode Settings

Provider settings for Hashnode articles

Overview

Hashnode is a blogging platform for developers. When posting articles, you need to specify the title, tags, and publication.

Settings Schema

{
"__type": "hashnode",
"title": "Article Title",
"subtitle": "Article Subtitle",
"main_image": {
"id": "image-id",
"path": "https://uploads.sipstory.tech/cover.jpg"
},
"canonical": "https://original-url.com/article",
"publication": "publication-id",
"tags": [
{ "value": "tag-id", "label": "Tag Name" }
]
}

Properties

PropertyTypeRequiredDescription
__typestringMust be "hashnode"
titlestringArticle title (min 6 chars)
subtitlestringArticle subtitle (min 2 chars)
main_imageobjectCover image
main_image.idstringImage ID
main_image.pathstringImage URL
canonicalstringOriginal URL for SEO
publicationstringPublication ID
tagsarrayAt least 1 tag required
tags[].valuestringTag ID
tags[].labelstringTag display name

Example

{
"type": "schedule",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": {
"id": "your-hashnode-integration-id"
},
"value": [
{
"content": "# Introduction\n\nWelcome to this comprehensive guide...\n\n## Prerequisites\n\n- Node.js installed\n- Basic JavaScript knowledge\n\n## Getting Started\n\nLet's begin...",
"image": []
}
],
"settings": {
"__type": "hashnode",
"title": "Complete Guide to TypeScript",
"subtitle": "From basics to advanced patterns",
"publication": "your-publication-id",
"tags": [
{ "value": "typescript-id", "label": "TypeScript" },
{ "value": "javascript-id", "label": "JavaScript" }
]
}
}
]
}
info
  • Title must be at least 6 characters
  • At least 1 tag is required
  • Publication ID is required - get it from your Hashnode dashboard
  • Content supports full Markdown formatting