Help improve docs quality by sharing anonymous interaction telemetry (no PII or token data).

Integrations API Reference

REST schemas and generated examples for connecting and managing third-party integrations.

Mock API reference used by the interactive docs explorer.

OpenAPI versionContract versionREST base path
3.1.02026-03-15/api/v1

Servers

URLEnvironment
https://app.monetizekit.app/api/v1Development environment
https://app.monetizekit.app/api/v1Staging environment
https://app.monetizekit.app/api/v1Production environment

integrations operations

Connect Stripe

POST /integrations/stripe — Creates a Stripe connect session for workspace setup.

Operation ID: connectStripe.

Required scopes: integrations:manage.

Request schema

{
  "type": "object",
  "required": [
    "action"
  ],
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "connect",
        "disconnect",
        "set_webhook_secret"
      ]
    },
    "apiKey": {
      "type": "string"
    },
    "secret": {
      "type": "string"
    }
  }
}

Request example

{
  "action": "connect",
  "apiKey": "rk_test_placeholder"
}

Responses

200 — Success

{
  "type": "object",
  "required": [
    "ok"
  ],
  "properties": {
    "ok": {
      "type": "boolean"
    }
  }
}
{
  "ok": true
}

Loading OpenAPI contract...

Was this page helpful?