Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/API/LanderLab
LanderLab

LanderLab API

Yes. LanderLab publishes a public REST API. See landerlab.io/api for pricing details.

OpenAPI spec
Public REST API documentedAgent-readiness 8/10
Data from Buddy's database, auto-rechecked weekly

What is the LanderLab API?

LanderLab's REST API v2 is public and GA, which is the other half of why this small tool punches above its weight on agent-readiness. The base is https://api.landerlab.dev with everything under /api/v2/, and the resource list maps onto the actual job of running landing pages: workspaces, landers (create, publish, unpublish, delete), A/B variants (clone, enable, set weights, promote), the editor itself (load and save raw HTML), leads, analytics, domains, folders, and integrations.

What makes it agent-friendly is the documentation, not just the endpoints. There is a public OpenAPI 3.1 spec and interactive docs at api.landerlab.dev/api/v2/docs, so a code agent can read the contract and generate a typed client without guesswork. Auth is the same organization-scoped X-API-Key used by the MCP server, leads come back paginated (max 1000 per page) with filters, and there are webhooks plus a Zapier integration for the no-code crowd. For a landing-page tool this size, a documented OpenAPI 3.1 surface is more than I expected to find.

For the broader picture: LanderLab review, full pricing breakdown, .

HOOK IT TO YOUR STACK

Real LanderLab API calls you'll write

landerlab-apirest
#Pull conversion data for all live pages
GET/v1/pages?status=live&fields=name,visitors,conversions
200 OK · 14 pages
/free-trial-202612.4k · 0.8% CVR
/webinar-replay4.8k · 1.2%
/case-study-acme2.1k · 1.9%
landerlab-apirest
#Clone a page with a new headline
POST/v1/pages/{id}/clone
201 Created · new page_id
Parent CVR4.7%
New page IDp_8f2a
Ready for A/Byes
landerlab-apirest
#Get top funnels by lifetime revenue
GET/v1/funnels?sort=-ltv&limit=5
200 OK · top 5
Webinar funnel$184k LTV
Free guide → upsell$92k
Quiz → tripwire$48k
TMB SCORE FOR LanderLabAgent fit: 8/10
Read review →

Endpoints illustrative. Confirm exact paths against the live API docs before integrating.

What LanderLab exposes

LanderLab ships an official MCP server at landerlab.io/mcp, giving AI agents direct access to my landing page workflows. I also expose a REST API documented at landerlab.io/api, with an OpenAPI spec published at landerlab.io/openapi.json for tooling and client generation. Between the MCP server and the REST endpoints, I can automate page creation, template selection, and campaign asset management from external systems. Authentication details aren't published in the public docs I pull from, so confirm the method (OAuth or API key) before wiring production integrations. There's no Zapier or Make connector listed, no native ChatGPT or Claude integration, and webhook availability isn't documented; plan integrations around the MCP server and REST API directly.

Pricing, limits, and integration

Auth is an organization-scoped X-API-Key in the X-API-Key header, the same key family the MCP server uses. The base is https://api.landerlab.dev and every resource sits under /api/v2/: workspaces, landers (create, publish, unpublish, delete), A/B variants (clone, enable, set weights, promote), editor (HTML load and save), leads, analytics, domains, folders, and integrations.

For building against it: there is a public OpenAPI 3.1 spec plus interactive docs at api.landerlab.dev/api/v2/docs, so you can generate a typed client straight from the contract. The leads endpoint is paginated at a maximum of 1000 records per page and supports filtering, which matters if you are syncing a large lead store and need to page through it cleanly. Webhooks fire for events so you can react without polling, and a Zapier integration covers the no-code path for teams that would rather wire LanderLab to their stack through clicks than code. No official SDKs ship yet, so the OpenAPI spec is your starting point for a generated client.

How much does the LanderLab API actually cost?

Verify on docs

LanderLab publishes an API, but per-tier gating wasn't extracted automatically.

  • Most likely scenario: API access is either included in all paid plans, or it's gated to higher tiers and we need to verify on the live docs page.
  • Until verified, treat the question "which plan unlocks the API" as open. Don't budget on the assumption it's free with the cheapest paid plan.

LanderLab subscription pricing

PlanMonthlyAnnual / mo
Free
Launch$129$69
Grow$219$119
Scale$429$239
Enterprise$1,199$639

⚠ Per-tier API gating not yet structured for LanderLab. Confirm which plans unlock API access on the live docs.

Source: landerlab.io/pricing. Verified 2026-06-07.

API at a glance

Auth method
SDK languages
OpenAPI spec
Webhooks
available
Structured outputs
No-code automation
Zapier

Which AI clients can read LanderLab data?

Not every AI assistant supports MCP natively. Here's the per-client picture for LanderLab specifically.

ClientSupportNotes
Claude (Desktop/Web)Native MCPConnect via the LanderLab MCP endpoint; X-API-Key header auth with an ll_live_ key.
Claude CodeNative MCP
ChatGPTNative MCP
CursorNative MCP
WindsurfNative MCPListed among supported clients alongside Manus and Gemini CLI.

What you can build with the LanderLab API

Three personas, three different shapes of build. Pick the row that matches how you actually ship.

SOLO DEV / FOUNDER

Glue LanderLab into your daily workflow

  • Pull a digest of fresh activity into your morning Slack
  • Trigger a one-off backfill when something looks off
  • Pipe data into your own SQLite for ad-hoc queries
Effort: A weekend, one Node or Python script
AGENCY / CONSULTANT

Sell LanderLab reporting at scale

  • White-label LanderLab data into client-branded dashboards
  • Run scheduled multi-account reports without logging into the LanderLab UI
  • Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Effort: 1-2 weeks, hits multi-tenant auth quickly
IN-HOUSE ENGINEER

Production pipelines for LanderLab

  • Real-time sync into your warehouse on a cron
  • Custom alerts the dashboard's built-in alerting can't express
  • Backfill + idempotency handling for LanderLab data older than the dashboard exposes
Effort: Multi-week project, expect rate-limit tuning

Quickstart template

# Starter template — endpoint paths and SDK package names come from
# the LanderLab API docs: https://landerlab.io/api

curl -X GET "https://landerlab.io/<your-endpoint>" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json" | jq .

Template only. Endpoint paths, exact base URL, and auth header format come from landerlab.io/api.

Limits and gotchas

  • OpenAPI is published — auto-generated clients work out of the box. Saves writing wrappers by hand.
  • No official SDK detected. Plan on hitting the API directly with your HTTP client of choice.
  • Rate limits: always read the docs page before scaling — the published limit is usually lower than the practical one and overages can be expensive.
8/10

Agent-readiness verdict

Score: 8/10 on API-readiness. LanderLab's REST API v2 is public, GA, and documented with a real OpenAPI 3.1 spec plus interactive docs, which is exactly what a code agent needs to generate a typed client. The resource coverage matches the whole landing-page loop (landers, variants, editor, leads, analytics, domains, integrations), auth is a single org-scoped X-API-Key, and webhooks plus Zapier cover automation and no-code. The score is not higher because there are no official SDKs yet, so you build the client yourself off the spec.

Weak agent-fit without MCP or SDK support. LanderLab publishes an OpenAPI spec and maintains public API docs, but offers no MCP server, language SDKs, or structured output support needed for seamless Claude/Cursor integration. Native agent connectors would be required to make this workflow-viable.

Public API with docsOpenAPI/Swagger spec published

LanderLab API FAQ

Does LanderLab have a public API?+
Yes — REST API at landerlab.io/api.
Is there an OpenAPI / Swagger spec I can auto-generate clients from?+

Sources

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

LanderLab

Try LanderLab
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.