Quickstart
Get Started in 1 Minute
Learn how to create, version, and deploy your first AI prompt.
1
Create an account
Create an account to get started with OpenPrompt.
Dashboard > New Workspace > "My First Agent"
2
Add your first prompt
Create a new prompt file. You can use variables using the {{variable}} syntax.
You are a helpful assistant.
User: {{user_input}}
Assistant:3
Version it
Hit "Save" to create a new version. OpenPrompt automatically tracks changes and lets you compare different versions side-by-side.
4
Test variations
Use the Playground tab to run your prompt against different models (GPT-4, Claude, Gemini) and compare the outputs.
5
Deploy via API
Use the instant API to fetch your prompt in your application.
curl -X POST https://api.openprompt.sparktac.in/v1/run \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"slug": "my-first-agent",
"variables": {
"user_input": "Hello world"
}
}'