Spike
← Back to use cases

SaaS Applications

Handle feedback, support requests, and contact forms in your SaaS application without building form infrastructure.

Benefits

  • Focus on your core product
  • Webhook to your support system
  • API access for custom integrations
  • Scales with your app

Example

// React component example
const FeedbackForm = () => {
  const handleSubmit = async (e) => {
    e.preventDefault();
    await fetch('https://spike.ac/api/f/YOUR_ID', {
      method: 'POST',
      body: new FormData(e.target),
      headers: { 'Accept': 'application/json' }
    });
  };
  
  return (
    <form onSubmit={handleSubmit}>
      <textarea name="feedback" required />
      <button type="submit">Send Feedback</button>
    </form>
  );
};

Ready to get started?