Layer Render API
Key Features
PSD to Image Conversion
Layer Extraction
Metadata Extraction
Simple Integration
Our API is designed to be easy to integrate with just a few lines of codeQuick Example
// Convert a PSD file to PNG
const fs = require('fs');
const axios = require('axios');
const FormData = require('form-data');
async function renderPsd() {
const formData = new FormData();
formData.append('file', fs.createReadStream('design.psd'));
formData.append('format', 'png');
formData.append('quality', '100');
try {
const response = await axios.post(
'https://api.psdrender.com/api/v1/render',
formData,
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
...formData.getHeaders()
}
}
);
console.log(response.data);
// { success: true, data: { url: "https://storage.psdrender.com/renders/a1b2c3.png", ... } }
} catch (error) {
console.error(error);
}
}
Simple, Transparent Pricing
Choose the plan that fits your needsFree Tier
$0
/month100 API requests per day
Max file size: 50 MB
Basic rendering options
Community support
Pro Tier
$49
/month1,000 API requests per day
Max file size: 250 MB
Advanced rendering options
Email support
Batch processing
Enterprise
Custom
Custom API request volume
Max file size: 500 MB
Custom rendering options
Priority support
SLA & dedicated account manager