Getting Started
Get up and running with PrompTick in just a few minutes.
Step 1: Create Your Account
- Visit promptick.ai
- Sign up with your email or Google account
- Verify your email address
Step 2: Create Your First Project
Projects help you organize your prompts and agents.
- Go to your Dashboard
- Click "New Project"
- Enter a project name (e.g., "Product Descriptions")
- Click "Create Project"
Step 3: Generate Your First Prompt
Let's create a prompt for generating product descriptions:
- In your project, click "Generate Prompt"
- Describe your use case:
Generate professional product descriptions for e-commerce products.
The description should highlight features, benefits, and specifications. - Configure settings:
- Model: Choose an AI model (e.g.,
gemini-1.5-flash) - Variables: Add variables like
product_name,features,price
- Model: Choose an AI model (e.g.,
- Click "Generate"
- Review the generated system and user prompts
- Test them in the Playground
Step 4: Deploy as an Agent
Turn your prompt into a production API:
- Click "Deploy as Agent" in your prompt
- Configure agent settings:
- Name: "Product Description Generator"
- Description: "Generates professional product descriptions"
- Enable API Access: ✅ Toggle ON
- Click "Deploy"
Step 5: Generate an API Key
- Go to the Agents tab in your project
- Click on your agent
- Click "API Keys" → "Create API Key"
- Set up your key:
- Name: "Production Key"
- Rate Limit: 100 requests/minute (adjust as needed)
- Expires: Never (or set an expiration date)
- Copy the API key (shown only once!)
pk_live_abc123...xyz789
Important
Save your API key securely! It won't be shown again.
Step 6: Make Your First API Call
Test your agent with a simple cURL command:
curl -X POST https://api.promptick.ai/api/v1/agents/YOUR_AGENT_ID/execute \
-H "Authorization: Bearer pk_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"variables": {
"product_name": "Smart Watch Pro",
"features": "Heart rate monitoring, GPS, waterproof",
"price": "$299"
}
}'
Response:
{
"jobId": "550e8400-e29b-41d4-a716-446655440000",
"status": "queued",
"agentId": "agent_123",
"message": "Agent execution queued successfully"
}
Step 7: Check Execution Status
Poll for results using the job ID:
curl https://api.promptick.ai/api/v1/agents/YOUR_AGENT_ID/executions/JOB_ID \
-H "Authorization: Bearer pk_live_YOUR_API_KEY"
Pro Tip
You can also view execution history and analytics in your agent's dashboard.
What's Next?
Now that you're set up, explore more features:
- Create More Agents - Build different types of AI capabilities
- Test Your Prompts - Ensure quality with comprehensive testing
- Improve Prompts - Enhance existing prompts
- Integration Examples - See code samples in your language
Common Questions
How many agents can I create?
You can create unlimited agents on all plans.
What AI models are supported?
PrompTick supports:
- Google Gemini (1.5 Flash, 1.5 Pro)
- OpenAI (GPT-4, GPT-3.5)
- Anthropic Claude (coming soon)
Can I use custom variables?
Yes! Define any variables you need when creating your prompt or agent.
Is there a free tier?
Yes, PrompTick offers a free tier with generous limits for testing and development.
Need help? Check out our FAQ or contact support.