Custom landing pages for your prospects

PageTailor researches the company, and helps tailor your landing page to each prospect. Access and trigger via API. Built for automated outbound.

Personalized SalesGhost landing page built for Kolleno
Generic SalesGhost landing page
Default Landing PagePersonalized (SalesGhost to Kolleno)

How it works

(Just give to your agent!)

Step 1

Define the contract

Set up the exact fields you want to personalize using the API. PageTailor doesn't build UI—it provides the structured data your components need.

POST https://pagetailor.dev/api/page-contracts
{
  "name": "landing_page",
  "fields": [
    { "key": "hero_title", "description": "Tailored headline" },
    { "key": "demo_copy", "description": "Specific use case" }
  ]
}
Step 2

Send a target account

When a prospect clicks your outbound link, or when you queue a campaign, pass their company domain to the generation endpoint. We'll research the company and align it with your seller profile.

curl -X POST https://pagetailor.dev/api/artifacts/generate \
  -d '{
    "companyDomain": "kolleno.com",
    "artifactType": "landing_page"
  }'
Step 3

Render the payload

PageTailor returns strict, validated JSON. Pass it into your existing React components or dynamically update your site—zero layout shift, zero hallucinated HTML.

{
  "hero_title": "A better way to ramp Kolleno's revenue team.",
  "demo_copy": "Coach reps through competitive displacement.",
  "company_icon": "https://..."
}
PageTailor