npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cm3tahkuh/strapi-api-forms

v2.4.4

Published

Create custom forms for websites

Downloads

311

Readme

Strapi v5 Plugin: API-Forms

License: MIT

A Strapi 5 plugin to create dynamic webforms and view submissions wrapped in a simple GUI. img.png img_1.png

Generating forms with A.I. example.gif

🚀 Features

  • Create Dynamic Forms with form builder
    • Generate form with AI
    • Create forms:
      • Possibility to define a start/end date
      • Add success and error message
      • Create dynamic form fields
        • Supporting multiple screens (phone, tablet, desktop)
        • Supporting multiple field types (text, textarea, checkbox, radio, select and file)
        • Supporting grid (tailwind)
  • View and export submissions
    • View all form submissions
    • Export submissions to CSV

👏 Support My Work

Hey there! I'm actively maintaining this project on my free time, and if you've found it useful, I'd greatly appreciate your support. Donations will help cover hosting costs, tools, and allow me to dedicate additional time for updates, features, and bug fixes.

You can contribute by donating through this link:

Donate via PayPal

I’d be forever grateful for your generosity. Thank you for helping keep this project alive and growing! ❤️


📦 Installation

To install this plugin, use the yarn or npm package manager. Run the following command in your Strapi project directory:

Yarn:

yarn add @cm3tahkuh/strapi-api-forms

NPM:

npm install @cm3tahkuh/strapi-api-forms

🛠️ Usage

  1. Activate the Plugin: Once the plugin is installed, Strapi will automatically detect and activate it. You can navigate to the Strapi admin panel to find the features of this plugin under API forms in the sidebar.

Example:

To configure the plugin, add the following to your config/plugins.js file:

module.exports = {
  "api-forms": {
    enabled: true,
    // When using AI functionality
    config: {
      ai: {
        enabled: true,
        apiEndpoint: env('OPEN_AI_API_ENDPOINT', 'https://api.openai.com/v1/chat/completions'),
        apiKey: env('OPEN_AI_SECRET_KEY', ''),
        model: 'gpt-4',
        temperature: 0.3,

      }
    }
  }
};

🚀 Roadmap

Here are the upcoming features and improvements planned for this project:

  • Multi-Step Form:
    Implement a user-friendly multi-step form for better segmentation and organization of complex inputs.

  • Relational Fields with Content Types:
    Add support for relational fields that dynamically populate dropdowns (select options) or other inputs from linked content types.

  • Dependent Fields:
    Introduce dependable fields that show or hide based on other field values for improved interactivity and usability.

  • New Field Types:
    Add additional field types such as:

    • Date picker
    • Time picker
    • Other necessary custom field types for diverse use cases.

Note: This is an evolving roadmap, and features may adjust based on user feedback and development priorities. If you have any suggestions or ideas, feel free to contribute! 😊

🤔 FAQ

Q: What versions of Strapi does this plugin support?
A: This plugin supports Strapi v5.x and higher.

Q: I encountered an issue. How can I get help?
A: Please check the "Troubleshooting" section below or open an issue on GitHub.


📄 License

This plugin is licensed under the MIT License. See the LICENSE file for more details.


❤️ Contributing

We welcome contributions to make this plugin even more awesome! If you'd like to contribute, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/new-feature).
  3. Commit your changes (git commit -m 'Add new feature').
  4. Push the branch (git push origin feature/new-feature).
  5. Open a pull request.

🐛 Troubleshooting

If you encounter issues while using this plugin, here are some troubleshooting steps:

  1. Ensure you are using a compatible version of Strapi (e.g., v4.x or later).
  2. Check your plugin configuration in config/plugins.js.
  3. Review logs in the terminal where Strapi is running.

If these steps don't resolve the issue, feel free to open an issue on GitHub.


📞 Support

If you have questions, issues, or suggestions, feel free to reach out via GitHub Issues.