Litmusly API

Integrate AI-powered product testing directly into your development workflow.

API Features

Everything you need to automate your testing workflow

RESTful API

Simple, intuitive REST endpoints for all Litmusly features.

Comprehensive Docs

Detailed documentation with code examples in multiple languages.

Webhooks

Real-time notifications when tests complete or events occur.

Secure Authentication

API key and OAuth 2.0 authentication options.

Quick Start

Get up and running in minutes

Create a test with the Litmusly API

// Create a new test
const response = await fetch('https://api.litmusly.com/v1/tests', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'Landing Page Test',
    type: 'usability',
    personas: 10,
    targetAudience: {
      age: '25-45',
      techSavvy: 'intermediate',
      industry: 'e-commerce'
    },
    testUrl: 'https://example.com/landing'
  })
});

const test = await response.json();
console.log('Test created:', test.id);

Core Endpoints

Essential API endpoints for testing automation

POST/v1/tests

Create a new test with custom parameters

GET/v1/tests/{id}

Retrieve test results and feedback

POST/v1/personas

Create custom AI personas

GET/v1/analytics

Access aggregated analytics data

POST/v1/webhooks

Configure webhook notifications

Ready to integrate Litmusly?

API access is available on our Enterprise plan. Contact our team to get started.

Contact Sales