API Integration
Connect QUORRA to your existing tools and workflows with our REST API. Automate project creation, code generation, and deployments.
Authentication
All API requests require authentication using your API key. You can generate an API key from your QUORRA dashboard under Settings → API Keys.
Your API Key:
••••••••••••••••••••••••••••
Important: Never expose your API keys in client-side code or public repositories. Use environment variables to store them securely.
Quick Start
Make your first API call to list your projects:
curl -X GET \
https://api.quorra.design/v1/projects \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
JavaScript/Node.js
// Install the QUORRA SDK
npm install @quorra/sdk
// Initialize the client
const Quorra = require('@quorra/sdk');
const client = new Quorra('your_api_key');
// Create a new project
const project = await client.projects.create({
name: 'My Website',
industry: 'healthcare',
template: 'professional'
});
Python
# Install the QUORRA SDK
pip install quorra-sdk
# Initialize the client
import quorra
client = quorra.Client('your_api_key')
# Generate HTML from design
html = client.generate.html(project_id, options={
'responsive': True,
'optimize': True
})