Skip to main content

Getting Started

Get up and running with PrompTick in just a few minutes.

Step 1: Create Your Account

  1. Visit promptick.ai
  2. Sign up with your email or Google account
  3. Verify your email address

Step 2: Create Your First Project

Projects help you organize your prompts and agents.

  1. Go to your Dashboard
  2. Click "New Project"
  3. Enter a project name (e.g., "Product Descriptions")
  4. Click "Create Project"

Step 3: Generate Your First Prompt

Let's create a prompt for generating product descriptions:

  1. In your project, click "Generate Prompt"
  2. Describe your use case:
    Generate professional product descriptions for e-commerce products.
    The description should highlight features, benefits, and specifications.
  3. Configure settings:
    • Model: Choose an AI model (e.g., gemini-1.5-flash)
    • Variables: Add variables like product_name, features, price
  4. Click "Generate"
  5. Review the generated system and user prompts
  6. Test them in the Playground

Step 4: Deploy as an Agent

Turn your prompt into a production API:

  1. Click "Deploy as Agent" in your prompt
  2. Configure agent settings:
    • Name: "Product Description Generator"
    • Description: "Generates professional product descriptions"
    • Enable API Access: ✅ Toggle ON
  3. Click "Deploy"

Step 5: Generate an API Key

  1. Go to the Agents tab in your project
  2. Click on your agent
  3. Click "API Keys""Create API Key"
  4. Set up your key:
    • Name: "Production Key"
    • Rate Limit: 100 requests/minute (adjust as needed)
    • Expires: Never (or set an expiration date)
  5. 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:

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.