Quick Start
Connection Pooling
The client supports two usage patterns with automatic connection pooling optimization:| Pattern | Connection Strategy | Performance | Use Case |
|---|---|---|---|
| Context Manager | Single pooled client | ⚡ High | Multiple API calls |
| Standalone | Client per request | 🔄 Standard | Single API calls |
API Methods
Authentication
- Register
- Login
- Get Current User
Workspaces
- Create & List
- Update & Delete
Members
- Add & List
- Update & Remove
Projects
- Create & List
- Update & Stats
Issues
- Create & List
- Update & Get
Comments
- Add & List
Agents
- Create & List
- Update & Delete
Labels
- Create & List
- Manage Issue Labels
Dependencies
- Create & List
- Delete
Activity Tracking
- Workspace Activity
- Issue Activity
Error Handling
The client raiseshttpx.HTTPStatusError for HTTP errors:
Best Practices
Use Connection Pooling
Use Connection Pooling
Always prefer the context manager pattern for multiple API calls to benefit from connection pooling:
Handle Token Management
Handle Token Management
The client automatically manages tokens after
register() or login(). For existing tokens:Batch Related Operations
Batch Related Operations
Environment Configuration
Environment Configuration
Use environment variables for configuration in production:
Related
Platform API Reference
Complete REST API documentation
Agent Platform Integration
Connect agents to platform resources

