Kameleoon website screenshot

Kameleoon

Kameleoon is an experimentation, personalization, feature flag, and AI-driven optimization platform for product and marketing teams.

3 APIs 0 Features
ExperimentationAB TestingPersonalizationFeature FlagsAI

APIs

Kameleoon Automation API

Kameleoon Automation API (REST) for programmatically managing experiments, feature flags, and configuration. Limited to roughly a dozen calls per minute per account.

Kameleoon Data API

Kameleoon Data API (REST) for high-volume server-to-server data exchange — visitor data, custom data, and offline conversions. Designed for millions of calls per minute.

Kameleoon Product Recommendation API

Kameleoon Product Recommendation API (REST) for managing product catalogs and serving AI-driven recommendations.

Collections

Pricing Plans

Kameleoon Plans Pricing

1 plans

PLANS

Rate Limits

Kameleoon Rate Limits

1 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Kameleoon Automation API
  version: 1.0.0
items:
- info:
    name: OAuth
    type: folder
  items:
  - info:
      name: Request an OAuth 2.0 access token
      type: http
    http:
      method: POST
      url: https://api.kameleoon.com/oauth/token
      body:
        type: form-urlencoded
        data:
        - name: grant_type
          value: ''
        - name: client_id
          value: ''
        - name: client_secret
          value: ''
        - name: code
          value: ''
        - name: redirect_uri
          value: ''
        - name: refresh_token
          value: ''
    docs: Exchange client credentials (or an authorization code) for an OAuth 2.0 access token. Client Credentials access
      tokens are valid for two hours.
  - info:
      name: Request an OAuth 2.0 authorization code
      type: http
    http:
      method: GET
      url: https://api.kameleoon.com/oauth/authorize
      params:
      - name: client_id
        value: ''
        type: query
      - name: redirect_uri
        value: ''
        type: query
      - name: response_type
        value: ''
        type: query
      - name: scope
        value: ''
        type: query
    docs: Display the Kameleoon consent screen and request an authorization code.
- info:
    name: Experiments
    type: folder
  items:
  - info:
      name: List experiments
      type: http
    http:
      method: GET
      url: https://api.kameleoon.com/experiments
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: List Kameleoon experiments for the authenticated account.
  - info:
      name: Create an experiment
      type: http
    http:
      method: POST
      url: https://api.kameleoon.com/experiments
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Create a new Kameleoon experiment.
- info:
    name: Personalizations
    type: folder
  items:
  - info:
      name: List personalizations
      type: http
    http:
      method: GET
      url: https://api.kameleoon.com/personalizations
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: List Kameleoon personalizations for the authenticated account.
bundled: true