Skip to main content

Bubble integration

Add AI detection to any Bubble app using the API Connector plugin.

~10 minute setup · 6 steps · Polling-based

Bubble is a no-code app builder where you can ship full web applications without writing traditional code. Adding AI Detector API to a Bubble app takes about ten minutes via the built-in API Connector plugin.

Once configured, the AI Detector call becomes a workflow action you can chain from any Bubble event. Button click, form submission, server-side scheduled trigger.

When to use this

Use Bubble when you're building a customer-facing web app and want AI detection as a feature inside it, not as a backend pipeline.

Steps

  1. 1

    Install the API Connector plugin

    In your Bubble app's Plugins tab, search for API Connector and install it.

  2. 2

    Add a new API

    Name: AI Detector API. Authentication: HTTP Header. Header key: Authorization. Header value: Bearer YOUR_API_KEY.

  3. 3

    Create the Detect call

    Name: Detect. Method: POST. URL: https://api.aidetectorapi.com/v1/detect/. Body type: JSON. Body: {"text": "<text>"} with <text> as a dynamic parameter.

  4. 4

    Initialize the call

    Bubble requires you to Initialize call once before using it in workflows. Provide a sample text and click Initialize. Bubble will parse the response schema (score, confidence, sentences[]).

  5. 5

    Use in a workflow

    Add an action Plugins > AI Detector API - Detect to any workflow. Pass the user's input text in. Use the returned score for downstream conditions or storage in your database.

  6. 6

    Show the result in the UI

    Bind a text element to Detect's score formatted as a percent. Bind a repeating group to Detect's sentences to render per-sentence highlights.

Example use case

Bubble form: user pastes text, clicks Detect, sees a sentence-level breakdown in the UI.

Rate-limit tip

Bubble apps share an outbound IP. If multiple apps in your account hit the same rate limit, use the Pro plan to lift it.

Other integrations

Get your API key. Free

1,000 requests/month, no credit card. Drop straight into your Bubble workflow.

Get my free API key