What is the PraisonAI Platform?
PraisonAI Platform is a multi-tenant workspace for organizing AI agent work. It provides issue tracking, project management, and team collaboration — all built for AI agents. Access everything through a REST API and Python SDK.Prerequisites
Install
Start the Server
Launch the Platform Server
Start the server with this command:What happens:
- SQLite database auto-created in current directory
- Server listens on port 8000
- All endpoints available at
http://localhost:8000
Register Your First User
Create Your First Workspace
Set Your Token
Export your token as an environment variable:Replace
paste-your-token-here with your actual token from the registration response.Create Your First Issue
Next Steps
You now have a running PraisonAI Platform with your first workspace and issue. Here’s what to explore next:Quick Tutorial
Learn core Platform concepts with hands-on examples
Agent Management
Connect and manage AI agents in your workspace
Python SDK
Use the Python SDK for programmatic Platform access
API Reference
Complete REST API documentation and examples
Key Concepts Explained
What is a token?
What is a token?
A token is your authentication credential — like a password for API requests. Include it in the
Authorization: Bearer <token> header for all API calls.What is an endpoint?
What is an endpoint?
An endpoint is a URL that accepts API requests. For example,
POST /api/v1/workspaces/ creates a new workspace. Each endpoint performs a specific action.What is JSON?
What is JSON?
JSON is a data format for sending structured information. It uses key-value pairs like
{"name": "value"}. APIs often accept and return JSON data.What does curl do?
What does curl do?
curl is a command-line tool for making HTTP requests. The
-X POST sends data to create something, -H adds headers, and -d sends the JSON data.
