Quikly API
Programmatically trigger workflows, query action history, and build custom integrations with the Quikly API.
Join the API waitlistWhat you'll be able to do
Programmatic Workflows
Trigger Quikly actions from your CI/CD pipelines, monitoring systems, or internal tools.
Custom Integrations
Build your own integrations that leverage Quikly's AI understanding and multi-tool orchestration.
Analytics & Reporting
Pull action data into your own dashboards and reporting tools.
Event-Driven Automation
React to Quikly events with webhooks to trigger downstream processes.
Planned Endpoints
POST/v1/actionsTrigger a Quikly action programmatically
Example: Create a Jira issue from your own application
GET/v1/actionsList actions taken by Quikly
Example: Query action history with filters
GET/v1/integrationsList connected integrations
Example: Check which tools are connected
POST/v1/webhooksSubscribe to Quikly events
Example: Get notified when actions complete
Example Request
curl -X POST https://api.quikly.ai/v1/actions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"action": "create_issue",
"params": {
"project": "ENG",
"type": "Bug",
"summary": "API integration test",
"description": "Created via Quikly API",
"priority": "P2"
}
}'This is a preview of what the API will look like. Syntax may change.
API Features
OAuth 2.0
Secure authentication with scoped API keys
Rate Limiting
Fair usage limits with clear headers
OpenAPI Spec
Full OpenAPI specification for client generation