🛟 Support

How Can We Help You?

Find guides, documentation, FAQs, and troubleshooting resources to get the most out of AICraft.

Resources

Browse Documentation

Setup

Installation Guide

1 Create Your Account

Visit aicraft.co.in and sign up for a free account. No credit card required for the Basic plan.

2 Get Your API Key

Navigate to Dashboard → API Keys → Generate New Key. Copy and store it securely.

ac_live_xxxxxxxxxxxxxxxxxxxxxxxx

3 Install the SDK

npm install @aicraft/sdk

4 Make Your First API Call

import AICraft from '@aicraft/sdk';

const client = new AICraft({ apiKey: 'YOUR_API_KEY' });

const result = await client.generateText({
  prompt: 'Write a product description for an AI tool',
  sector: 'Marketing'
});

console.log(result.text);
FAQ

Frequently Asked Questions

A 401 error means the API key is missing, invalid, or expired. Double-check that you're passing the key as Authorization: Bearer YOUR_KEY and that the key hasn't been revoked in your dashboard.
Click "Forgot Password" on the login page. A reset link will be sent to your registered email address. The link expires after 30 minutes.
Yes, the REST API works from any platform. However, never embed your API key directly in a mobile app. Use a backend proxy to make API calls securely.
Go to Dashboard → Billing → Change Plan. Upgrades take effect immediately, and you'll be charged the prorated difference for the current billing period.
Yes. All data is encrypted in transit (TLS 1.3) and at rest (AES-256). We do not use your data to train our models. Enterprise customers can request a Data Processing Agreement (DPA).
Use the Submit Tool form on the homepage, or make a POST /api/tools API call with your tool details. All submissions are reviewed before going live.