skills/sales-kartra/SKILL.md
Kartra platform help — all-in-one for coaches, consultants, and course creators (kartra.com): funnels/pages, email + SMS automation, checkout with order bumps and upsells, memberships/courses, video, webinars, affiliate management, helpdesk, and calendars. Covers the inbound API (POST app.kartra.com/api with app_id/api_key/api_password and an actions[] array, 20 calls/sec) and outbound IPN webhooks. Use when building a Kartra API integration to sync leads or tags into a CRM, your API key only works after upgrading to the Professional plan, you hit the 20-calls-per-second 429 limit, IPN webhooks aren't firing on purchase or tag events, custom-domain redirects slow page load, your account is throttled for crossing the 0.03% spam-complaint threshold, the calendar drops appointments, or choosing a plan (Essentials vs Starter vs Growth vs Professional). Do NOT use for funnel strategy across tools or comparing Kartra against other all-in-one platforms (use /sales-funnel).
npx skillsauth add sales-skills/sales sales-kartraInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
If references/learnings.md exists, read it first for accumulated platform knowledge.
What are you trying to do?
Where does data need to flow? Stay inside Kartra / sync to a CRM or warehouse / drive an external app — this decides API vs webhook vs Zapier.
Skip-ahead rule: if the user's prompt already provides enough context, skip to Step 2.
| If the question is about... | Route to... |
|---|---|
| Multi-step funnel strategy/structure across tools | /sales-funnel {question} |
| Email-marketing strategy, sequences, deliverability | /sales-email-marketing {question} |
| Inbox-placement / spam-complaint deliverability | /sales-deliverability {question} |
| Checkout/order-bump/upsell conversion optimization | /sales-checkout {question} |
| Membership-site / course structure and retention | /sales-membership {question} |
| Webinar funnel strategy (live + evergreen) | /sales-webinar {question} |
| Comparing Kartra vs other all-in-one platforms | /sales-funnel {question} |
When routing, give the exact command, e.g. "This is a funnel-strategy question — run: /sales-funnel {your question}".
Read references/platform-guide.md for the full reference — the module map (what's API-accessible vs webhook-accessible vs UI-only), pricing and plan gates, the lead/tag/transaction data model with JSON shapes, and quick-start recipes (create a lead + assign a tag via the API; listen for a purchase IPN webhook; bulk-export transactions).
Read references/kartra-api-reference.md for the inbound API — base https://app.kartra.com/api, the app_id/api_key/api_password auth, the actions[] array and every cmd (leads, custom fields, lists, tags, sequences, pages, transactions, subscriptions, calendars, points), the 20-calls/sec rate limit, and the outbound IPN webhook events.
Answer the user's question using only the relevant section. Don't dump the full reference.
Focus on the user's specific situation:
POST https://app.kartra.com/api) with app_id, api_key, api_password, and an actions[] array. To create-then-act on a lead in one call, the first action's cmd must be create_lead.actions into one request where possible and back off on 429.2xx fast and process async.If you discover a gotcha, workaround, or tip not covered in references/learnings.md, append it there.
Best-effort from research (2026-06) — review these, especially plan-gated features and pricing, which change frequently.
actions[] array. It's not REST — don't expect /leads/{id}. Send POST form data to https://app.kartra.com/api with the action commands in an array. First cmd must be create_lead when creating.429. Bulk syncs need throttling, batching multiple actions per call, and backoff.http://. Always call over SSL./sales-funnel — Funnel strategy across tools (Kartra is one of the all-in-one funnel builders covered) and Kartra-vs-alternatives comparisons/sales-email-marketing — Email/SMS sequence strategy and deliverability/sales-deliverability — Inbox placement and spam-complaint-rate management (relevant to Kartra's 0.03% standard)/sales-checkout — Checkout, order-bump, and upsell conversion optimization/sales-membership — Membership-site and course structure, pricing, and retention/sales-webinar — Live and evergreen webinar funnel strategy/sales-do — Not sure which skill to use? The router matches any sales objective to the right skill. Install: npx skills add sales-skills/sales --skill sales-do -a claude-codeUser says: "When someone signs up in my app, I want to create the lead in Kartra and tag them 'app-trial'. What's the cleanest API call?"
Skill does: Confirms the account is on a plan with API access, then shows the single form-POST to https://app.kartra.com/api with app_id/api_key/api_password and an actions[] array whose first cmd is create_lead (carrying lead[email], lead[first_name]) followed by an assign_tag action (Recipe 1 in references/platform-guide.md). Notes the 20-calls/sec limit and to upsert by email to avoid duplicate leads.
Result: One API call creates-and-tags the lead; the user understands the actions-array model.
User says: "I want my fulfillment system to fire the moment someone buys in Kartra, not on a cron. How?"
Skill does: Points to the outbound IPN webhook — configured under My Integrations » API — that fires on the purchase event with the lead + transaction payload. Explains responding 2xx fast and processing async, and deduping on the transaction ID since deliveries can repeat (Recipe 2). Contrasts with polling search transactions, which burns the 20/sec limit.
Result: User sets up an event-driven webhook instead of a polling loop.
User says: "Kartra warned me my spam complaints are too high and slowed my sending. What now?"
Skill does: Explains the platform-wide ~0.03% spam-complaint standard (account protection, not just inbox placement), then routes the strategy: "This is a deliverability problem — run: /sales-deliverability my Kartra account is throttled for spam complaints." Adds Kartra-specific first steps: suppress unengaged segments, slow the send cadence, and re-permission cold imports before bulk blasts.
Result: User gets both the platform context and the right strategy skill.
Symptom: A valid-looking key fails to authenticate, or there's no API section in Settings.
Cause: API access is plan-gated — current plans appear to restrict it to the Professional tier — or you're missing one of the three required params (app_id, api_key, api_password), or you're calling over http://.
Solution: Verify the account's plan includes API access; confirm all three auth params are sent in the POST body; ensure the call uses https://. The App ID must match the app registered under Settings » Integrations » My API.
Symptom: Bulk syncs start failing with 429s.
Cause: The inbound API caps at 20 calls/second per App.
Solution: Throttle below 20/sec, batch multiple actions into a single request, and add exponential backoff on 429. For large migrations, queue and pace the writes rather than firing them in a tight loop.
Symptom: Your endpoint never receives purchase/tag events, or processes the same event repeatedly.
Cause: The outbound IPN isn't enabled/pointed at your URL, the event type isn't selected, or your handler isn't idempotent.
Solution: Enable the outbound API under My Integrations » API, select the events you need (purchase, tag applied, lead created, sequence complete, membership granted, etc.), and confirm the target URL is reachable over HTTPS. Respond 2xx quickly and dedupe on the transaction/lead identifier so retries don't double-process.
tools
Wizlogo (wizlogo.com) platform help — a budget online logo maker (template/style-variation, marketed as "AI") plus a hub of FREE branding tools (business-name, blog-name and slogan generators, business-card maker, invoice generator, color converter, domain search). The pricing traps: the FREE logo is PERSONAL-USE-ONLY; the two cheap paid tiers are RASTER PNG/JPG only — Single (~€39.99 one-time) and Unlimited (~€3.99 per WEEK, recurring) — and VECTOR (SVG/PDF/EPS) is gated to the ~€299.99 Enterprise tier, which also bundles human designer edits and a social kit. Transparent PNG is on all paid plans. Use when making a Wizlogo logo, understanding free-vs-paid or personal-vs-commercial use, which tier unlocks vector/SVG for print, the weekly-subscription billing trap, its free name/slogan generators, or whether it has an API (UI-only — no public API, webhooks, Zapier or MCP). Do NOT use to just generate the business name (use /sales-namelix) or to compare/validate branding tools (use /sales-idea-validation).
tools
VistaPrint platform help (vistaprint.com, a Cimpress company) — the small-business design + print + digital-marketing platform: a free AI Logomaker (4 generations, 60 more after free sign-up) exporting SVG/PNG/PDF at 4000x4000 with no watermark, a free Brand Kit, business cards/flyers/signage/apparel/promo print, and a website builder. THE RIGHTS TRAP: VistaPrint states NO intellectual-property rights transfer on an AI-generated logo — you get usage rights but CANNOT register it for trademark or copyright; only its human designer service transfers full IP. Use when making a VistaPrint logo, asking if you own or can trademark it, running out of AI logo credits, printed colors not matching the screen, bleed/DPI/font file-prep rejections, or asking whether VistaPrint has an API (the consumer site does not — automation runs through the parent Cimpress Open partner-fulfilment API). Do NOT use for Vista Social scheduling (use /sales-vistasocial) or comparing logo tools market-wide (use /sales-idea-validation).
tools
Turbologo (turbologo.com) platform help — a budget AI/DIY logo maker: enter a business name + industry, pick icons and colors, and it proposes logo concepts you refine in an in-browser editor, then pay a one-time fee to download (designing is free, previews are watermarked, downloading is the paywall). Vector SVG/PDF is gated to the mid tier and up; the top tier adds a brand kit (business cards, letterheads, email signatures, social assets). Use when generating a logo in Turbologo, choosing which download tier to buy, vector SVG vs raster PNG, removing the free watermark, the time-limited edit-after-purchase window, pay-to-download pricing questions, whether an AI logo is yours to trademark, or whether Turbologo has an API to bulk-generate logos (it is UI-only — no public API, webhooks, Zapier, or MCP). Do NOT use to generate the business name (use /sales-namelix), compare or validate branding tools across the market (use /sales-idea-validation), or build wider marketing creative (use /sales-canva).
tools
Online Logo Maker (onlinelogomaker.com) platform help — a long-standing free/freemium DIY logo maker: build the mark yourself from icons, shapes, text, and fonts — MANUAL/template-based, NOT enter-a-name-get-AI-concepts. The free pack downloads a LOW-RES 300px PNG with a background; vector SVG, transparent PNG, and 2000px high-res are gated to a one-time lifetime Premium pack (not a subscription). The free tier's commercial-use rights are disputed by reviewers — clean ownership effectively needs Premium, and a shared-icon mark can be non-distinctive. Use for building/editing a logo here, free download vs Premium, vector SVG or transparent PNG, one-time pricing, commercial-use/trademark terms, near-namesake confusion (NOT LogoMaker.com / LogoMakr / Logomakerr.ai), or whether it has an API (UI-only — no API, webhooks, Zapier, MCP). Do NOT use to generate the business name (use /sales-namelix), compare branding tools across the market (use /sales-idea-validation), or build wider creative (use /sales-canva).