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
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 (202 Accepted):
{
"success": true,
"executionId": "550e8400-e29b-41d4-a716-446655440000",
"agentId": "agent_123",
"agentName": "Product Description Generator",
"status": "processing",
"message": "Agent execution started",
"statusUrl": "/api/v1/agents/agent_123/executions/550e8400-e29b-41d4-a716-446655440000"
}
Step 7: Check Execution Status
Poll for results using the executionId:
curl https://api.promptick.ai/api/v1/agents/YOUR_AGENT_ID/executions/EXECUTION_ID \
-H "Authorization: Bearer pk_live_YOUR_API_KEY"
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 gives you a catalog of 300+ models from leading providers (Google, OpenAI, Anthropic, Meta, Mistral, and more). Pick a model from the picker in the app when you generate, improve, or deploy a prompt — our recommendation engine also suggests a good default for your use case. The catalog is updated as new models ship and old ones are retired, so the best answer here is always the picker.
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.