Migrate from Calry
Switch from Calry in 5 minutes. Schema-compatible responses for v1 and v2.
Step 1: Change base URL
// Before (Calry v2) const BASE = 'https://dev.calry.app/api/v2/vrs' // After (Repull) const BASE = 'https://api.repull.dev/v1'
Step 2: Update headers
// Add X-Schema: calry to ensure Calry-compatible responses
headers: {
'Authorization': 'Bearer sk_live_YOUR_KEY',
'X-Workspace-Id': 'YOUR_WS_ID',
'X-Schema': 'calry', // Matches Calry v2 format exactly
}For Calry v1, use X-Schema: calry-v1. Response field names are identical.
AI