Prompticus

Prompticus API Access Token

Actions5

Overview

The node integrates with the Prompticus API to manage "Prompt" resources. Specifically, the Create operation allows users to create a new prompt by providing a title, description, and the full prompt body text. This is useful in scenarios where you want to programmatically add prompts that can be used later for various AI or automation tasks, such as generating dynamic content, instructions, or templates.

Practical examples include:

  • Creating custom prompts for AI language models with variable placeholders.
  • Storing reusable prompt templates for automated workflows.
  • Managing prompt metadata like titles and descriptions for easier organization.

Properties

Name Meaning
Title The name or title of the prompt being created.
Description A brief explanation of what the prompt does or its intended purpose.
Body The full prompt text including any variables or instructions, using mustache syntax (e.g., {{COUNT}}).

Output

The node outputs JSON data representing the newly created prompt resource as returned by the Prompticus API. This typically includes fields such as the prompt's unique identifier, title, description, body, creation timestamps, and possibly other metadata.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the Prompticus API.
  • The base URL for API requests is https://api.promptic.us/v1.
  • The node expects JSON request and response formats.
  • Proper configuration of the API access token within n8n credentials is necessary.

Troubleshooting

  • Authentication errors: Ensure the API key credential is correctly set up and has the required permissions.
  • Validation errors: Missing required properties (title, description, body) will cause the API to reject the request. Make sure all required fields are provided.
  • API connectivity issues: Verify network access to https://api.promptic.us/v1 and that no firewall or proxy blocks the requests.
  • Malformed prompt body: Using incorrect mustache syntax in the body may lead to unexpected behavior downstream; validate the template syntax before submission.

Links and References

Discussion