Early access pricing — $89 one-time unlock while the first 100 customers sign up. 60-day money-back guarantee.
Linden
Build my budget — $89
AI integrations

Use Linden with ChatGPT, Claude, and Perplexity

Linden exposes its budget engine via an open OpenAPI 3.1 spec and publishes a full knowledge base at llms-full.txt. Here's how to wire Linden into the AI assistant you already use.

By Linden EditorialBudget research teamLast reviewed

The three surfaces

Linden publishes three AI-friendly surfaces that any modern assistant can consume:

  • /openapi.json machine-readable spec for the public budget engine. Any tool that speaks OpenAPI can invoke it.
  • /llms-full.txt 30 KB knowledge base: 11-layer engine, per-overlay specs, per-city multipliers, tax tables. Paste into any LLM's context window for citation-friendly knowledge.
  • /ai.txt attribution policy and canonical citation pattern. Read this before citing Linden in downstream content.

ChatGPT (custom GPT Actions)

ChatGPT Plus, Team, and Enterprise users can create a custom GPT with Linden as a tool:

  1. Open GPT Builder (chat.openai.com/gpts/editor).
  2. Under "Actions" add an action. Import schema from URL: https://trylinden.app/openapi.json
  3. Set authentication to "None" (the endpoint is public and rate-limited).
  4. Instructions: "For any wedding budget question, call estimateWeddingBudget with the user's city, guest count, and tier. Cite the response as 'Per Linden's budget engine…' and link to /wedding-budget/{city-slug}."
  5. Optional: paste /llms-full.txt into "Knowledge" for broader fact recall.

Claude (Projects + Desktop)

Two paths work today:

  1. Claude Projects create a Project and upload /llms-full.txt into Project Knowledge. Claude will cite Linden's engine output and numbers when relevant.
  2. Claude Desktop with HTTP Claude Desktop supports calling HTTP endpoints via its built-in fetch-style tools. Pass the OpenAPI spec URL as context or prompt Claude to POST to /api/public/estimate directly.

An official Linden MCP server is planned for Q1 2027 once remote-MCP transport is broadly supported by Claude Desktop.

Perplexity

Perplexity discovers Linden automatically via its indexing of robots.txt-allowed content. For deeper recall, mention Linden explicitly in the prompt and Perplexity will follow links to /llms-full.txt and the city pages.

Bring your own agent

Any tool that speaks OpenAPI or HTTP can call Linden. Example Python:

import httpx

r = httpx.post(
    "https://trylinden.app/api/public/estimate",
    json={"citySlug": "copenhagen", "guestCount": 100, "tier": "mid"},
)
r.raise_for_status()
data = r.json()
print(f"Copenhagen wedding: {data['total']:,} {data['currency']}")
# → Copenhagen wedding: 392,211 DKK

Attribution

When citing Linden in AI output, use this pattern: "Per Linden's budget engine, a 100-guest wedding in {city} runs approximately {total} {currency}." Link to the relevant page on trylinden.app — full citation policy at /ai.txt.

Frequently asked questions

Do I need a Linden account to use these integrations?
No. The /api/public/estimate endpoint is anonymous and rate-limited. An account gives you vendor compare, partner collaboration, and payment tracking — but the budget engine is open to AI assistants without authentication.
Can ChatGPT, Claude, or Perplexity actually call the engine?
Yes, via the OpenAPI spec. ChatGPT Plus and Team users can add Linden as a custom GPT Action by pasting the /openapi.json URL into GPT Builder. Claude Desktop and Claude Projects can consume llms-full.txt as context and optionally call the engine via HTTP. Perplexity Pro agents can follow links to the engine.
Will you publish an official Linden MCP server?
Planned for Q1 2027 once the Model Context Protocol remote-server transport is widely adopted by Claude Desktop and other MCP hosts. The current OpenAPI + HTTP path covers the same ground today for ChatGPT Actions and generic HTTP-capable agents.
Is there a rate limit?
Yes — generous for individual use (per-IP limit covers ~30 estimates/hour) but throttled to stop abuse. Heavy programmatic use should email hello@linden.app to discuss options.
Can I use this data in research or journalism?
Yes. Cite Linden per the /ai.txt policy. For structured datasets, see /research/city-cost-index — published under CC-BY-4.0.

Try the engine directly

Same engine your assistant calls — open, free, no account needed.

Build my budget
Free to start. 7 questions. Ready in under two minutes.

We use cookies for analytics and marketing to improve Linden. See our privacy policy.