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.

OpenAPI specWebhooksMCP also availableLLMs: Claude (Desktop/Web), Claude Code, ChatGPT, Cursor, Windsurf
Public REST API documentedAgent-readiness 8/10
Facts verified 2026-08-04

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
#Get all deals in Proposal stage > 14 days
GET/api/v1/deals?stage=proposal&stalled[gt]=14
200 OK · 4 stalled
Acme Corp ($24k)23d stalled
Beta Industries ($8k)19d stalled
Globex Ltd ($45k)16d stalled
Wire to Slack alert.
landerlab-apirest
#Push a new lead with enrichment
POST/api/v1/leads
201 Created · lead_id: ld_92x
Lead score78 / 100
Enrichmentcompany, role, linkedin
Assigned toauto-routed
landerlab-apirest
#Get hot accounts by activity score
GET/api/v1/accounts?sort=-activity_score&limit=5
200 OK · top 5
Acme Corp98
Globex Ltd91
Initech84
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.

API at a glance

API docs
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.

LanderLab also has an MCP server

If you're wiring LanderLab into Claude / Cursor / Codex, the MCP server is usually less code than the REST API.

See LanderLab MCP page

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 stalled deals 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 via webhooks
  • 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/openapi.json

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/openapi.json.

Limits and gotchas

  • OpenAPI is published — auto-generated clients work out of the box. Saves writing wrappers by hand.
  • Webhooks available — react to LanderLab events in real time instead of polling.
  • 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.
  • No-code fallback: Zapier cover the common triggers if you want to skip writing API code for simple flows.
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.

LanderLab advertises an official MCP server on its own homepage ("Run LanderLab from Claude, ChatGPT & more"). martech-db recorded hasMcpServer=false, which was wrong. The endpoint URL is not published on any public page (landerlab.io/mcp-server 404s), so mcpServerUrl is deliberately empty rather than guessed. landerlab.io/api also 404s, so the public API is unconfirmed - do not claim a REST API in prose.

LanderLab API FAQ

Is there an OpenAPI / Swagger spec I can auto-generate clients from?+
Does LanderLab support webhooks?+
Yes — webhooks are available on standard plans.
Should I use the API or the MCP server for Claude / Cursor / Codex?+
Prefer the MCP server for agent workflows — it's less code and pre-handles auth flows. Use the REST API for scheduled jobs, dashboards, and anything outside an LLM-driven flow.
Does LanderLab have a public API?+
Not documented publicly as of the last check. Some tools expose private/partner APIs — contact sales if you need programmatic access.

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.