Nichesss icon

Nichesss

Interact with Nichesss.com

Overview

The Nichesss node for n8n allows users to interact with the Nichesss.com API, specifically managing content plans. The "Add to Content Plan" operation enables users to add new content items to an existing content plan by providing the relevant content data in JSON format. This is useful for automating content planning workflows, such as scheduling social media posts, blog articles, or other marketing materials.

Practical Example:
A marketing team could use this node to automatically add newly generated content ideas or drafts into their Nichesss content plan whenever a trigger occurs (e.g., a new row in a Google Sheet or a form submission).

Properties

Name Type Meaning
Content Plan ID String The unique identifier of the content plan to which the content will be added.
Content String A JSON string containing the content details to add (e.g., tool ID, post title, tone, webhook URL, etc.).

Output

  • The output will contain a json field reflecting the response from the Nichesss API after adding the content to the specified content plan.
  • The structure of the output depends on the Nichesss API's response, but typically includes confirmation of the addition and possibly the details of the newly added content item.

Dependencies

  • External Service: Requires access to the Nichesss.com API.
  • Credentials: May require an API key or credentials configured in n8n under the name nichesssApi.
  • Environment: No special environment variables are mentioned, but ensure network access to https://nichesss.com/api.

Troubleshooting

  • Invalid Content Plan ID: If the provided Content Plan ID does not exist or is incorrect, the API may return an error indicating that the content plan was not found.
  • Malformed Content JSON: If the Content property is not valid JSON, the request will likely fail. Ensure the JSON is properly formatted.
  • Authentication Errors: If credentials are missing or invalid, you may receive authentication or authorization errors from the API.
  • API Rate Limits: Excessive requests may result in rate limiting; check the Nichesss API documentation for limits.

Links and References

  • Nichesss.com
  • n8n Documentation
  • For more about the expected JSON structure for content, refer to Nichesss API documentation or the placeholder example:
{
  "tool_id": "ZVJReZgVn",
  "post_title": "Whats the cheapest way to get to Brazil?",
  "tone": "helpful and professional",
  "webhook_url": "https://a-cool-webhook.com",
  "language": {
    "ID": "deepl_PT-BR",
    "formality": "more"
  }
}

Discussion