salesloft-cost-tuning

Featured

Optimize SalesLoft API costs by reducing request volume and deep pagination. Use when analyzing API usage, reducing rate limit consumption, or planning capacity for bulk operations. Trigger: "salesloft cost", "salesloft billing", "reduce salesloft API usage".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# SalesLoft Cost Tuning ## Overview SalesLoft API cost is rate-limit-based (600 cost points/minute), not dollar-based. The primary cost driver is deep pagination -- pages beyond 100 cost 3-30x more. Optimize by using incremental sync, caching, and avoiding full table scans. ## Cost Model ### Rate Limit Cost Structure | Page Range | Cost per Request | Notes | |------------|-----------------|-------| | 1-100 | 1 point | Standard | | 101-150 | 3 points | 3x multiplier | | 151-250 | 8 points | 8x multiplier | | 251-500 | 10 points | 10x multiplier | | 501+ | 30 points | 30x multiplier | **Budget: 600 points/minute.** This is the ceiling regardless of SalesLoft plan tier. ### Cost Calculator ```typescript function calculateSyncCost(totalRecords: number, perPage = 100) { const pages = Math.ceil(totalRecords / perPage); let cost = 0; for (let p = 1; p <= pages; p++) { if (p <= 100) cost += 1; else if (p <= 150) cost += 3; else if (p <= 250) cost += 8; else if (p <= 500) cost += 10; else cost += 30; } const minutes = Math.ceil(cost / 600); return { pages, cost, minutes, pointsPerMinute: 600 }; } // Examples: // 1,000 records = 10 pages = 10 points = instant // 10,000 records = 100 pages = 100 points = instant // 25,000 records = 250 pages = 100 + 150 + 800 = 1050 points = ~2 min // 50,000 records = 500 pages = 100 + 150 + 800 + 2500 = 3550 points = ~6 min ``` ## Cost Reduction Strategies ### Strategy 1: Incremental Sync (Biggest Win) ```typ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

salesloft-performance-tuning

Optimize SalesLoft API performance with caching, pagination strategies, and connection pooling. Use when experiencing slow API responses, reducing latency for bulk operations, or optimizing cadence sync throughput. Trigger: "salesloft performance", "optimize salesloft", "salesloft slow", "salesloft caching".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-rate-limits

Handle SalesLoft cost-based rate limiting with backoff and request budgeting. Use when hitting 429 errors, optimizing API throughput, or implementing pagination-aware rate limit strategies. Trigger: "salesloft rate limit", "salesloft 429", "salesloft throttling".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-cost-tuning

Optimize Flexport API usage costs through efficient pagination, caching, webhook-driven updates, and monitoring API call volume. Trigger: "flexport costs", "flexport API usage", "reduce flexport calls", "flexport billing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-cost-tuning

Optimize ClickUp API usage costs through plan selection, request reduction, caching, and usage monitoring. Trigger: "clickup cost", "clickup billing", "reduce clickup usage", "clickup pricing", "clickup plan comparison", "clickup API usage".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-cost-tuning

Optimize Salesforce costs through API call reduction, edition selection, and license management. Use when analyzing Salesforce costs, reducing API consumption, or choosing the right Salesforce edition for your integration needs. Trigger with phrases like "salesforce cost", "salesforce pricing", "reduce salesforce costs", "salesforce license", "salesforce API usage", "salesforce budget".

2,266 Updated today
jeremylongshore