personalize.marketing

Get Started

Get your API key and make your first personalized outreach request.

Get Started

1. Get Your API Key

  1. Visit the pricing page and select a plan (including our free tier)
  2. Create your account using Google, GitHub, or email
    • For email sign-up, check your inbox for a verification link (also check spam)
  3. Navigate to Dashboard → API Keys
  4. Click "Create New Key"
  5. Copy your API key (starts with pm_)

Your API key goes in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Security tip: Never commit API keys to git—use environment variables.

2. Make Your First Request

Use any tool that can make HTTP requests. We have guides for:

Automation Tools: Zapier · Make · n8n

Programming Languages: JavaScript · TypeScript · Python · cURL · Go · Ruby · C# · Java

Quick Example

curl -X POST https://personalize.marketing/api/v1/personalize-api \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "profile_url": "https://linkedin.com/in/arnold-schwarzenegger/",
    "template": "Hey {{first name}},\n\nLove what you are building with {{their company or product}}. We make fitness supplements that would pair perfectly with your brand.\n\nWorth a quick chat?",
    "brand_context": "We are a fitness supplement brand targeting health-conscious entrepreneurs",
    "ai_instructions": "Keep the tone professional but friendly",
    "enable_brand_fit_score": true,
    "include_profile_report": true,
    "include_raw_data": true
  }'

Response:

{
  "success": true,
  "personalized_text": "Hey Arnold,\n\nLove what you are building with The Pump app. We make fitness supplements that would pair perfectly with your brand.\n\nWorth a quick chat?",
  "profile_url": "https://linkedin.com/in/arnold-schwarzenegger/",
  "brand_fit_score": 9,
  "profile_report": "Arnold Schwarzenegger is an entrepreneur, actor, and fitness icon with 500K+ LinkedIn followers. He actively promotes his businesses including The Pump app and his daily newsletter. His content focuses on fitness, motivation, and health advice. High engagement rates with a professional, health-conscious audience.",
  "raw_data": {
    "profile": {
      "firstName": "Arnold",
      "lastName": "Schwarzenegger",
      "headline": "Businessman | Founder of The Pump",
      "followerCount": 500000
    },
    "posts": ["..."]
  }
}

Need the full API spec? See the API Reference.

On this page