Integrations
Arcadia's open architecture connects with your existing toolchain. REST API, native integrations, and an extensible plugin framework.
Native Integrations
Seamless connections to the tools your team already uses.
Jira
Bi-directional sync of issues, epics, and sprints. Requirements in Arcadia automatically appear as Jira tickets โ and vice versa.
Git / GitHub / GitLab
Auto-link commits to requirements and tasks. See code changes directly in your traceability matrix. Branch-aware linking.
Jenkins / CI/CD
Trigger builds from Arcadia. Automatically link build status to releases. Pipeline visualization in your ALM dashboard.
Test Automation
Integrate with Selenium, JUnit, TestNG, and Robot Framework. Test results automatically update requirement coverage.
Slack / Teams
Real-time notifications for reviews, approvals, and status changes. Never miss an important update.
Power BI / Tableau
Connect Arcadia data to your BI tools via REST API. Build custom dashboards that combine ALM data with business metrics.
REST API
Everything in Arcadia is accessible through a comprehensive, well-documented REST API.
- โ Full CRUD operations on all artifacts
- โ OpenAPI (Swagger) specification
- โ OAuth 2.0 and API key authentication
- โ Webhook support for event-driven automation
- โ Rate-limited, paginated, and versioned
GET /api/v1/requirements
Authorization: Bearer <token>
{
"data": [
{
"id": "REQ-1001",
"title": "System shall...",
"status": "approved",
"linkedTests": 5,
"linkedCommits": 12
}
],
"pagination": {
"page": 1,
"total": 234
}
}