Skip to content

Marketplace API

Pro The Marketplace API provides access to the FlagBridge plugin marketplace.

Auth: Admin key required.

GET /v1/marketplace/plugins

List available plugins in the marketplace.

bash
curl https://api.flagbridge.io/v1/marketplace/plugins \
  -H "Authorization: Bearer fb_admin_YOUR_KEY"

Query parameters

ParameterTypeDescription
categorystringFilter by category (analytics, monitoring, crm)
qstringSearch by name or description
sortstringSort by popular, newest, name
json
{
  "plugins": [
    {
      "packageName": "@flagbridge/plugin-mixpanel",
      "name": "Mixpanel",
      "description": "Send flag evaluation events to Mixpanel",
      "category": "analytics",
      "version": "1.2.0",
      "author": "FlagBridge",
      "downloads": 12400,
      "verified": true
    }
  ]
}

GET /v1/marketplace/plugins/:packageName

Get details about a specific marketplace plugin.

bash
curl "https://api.flagbridge.io/v1/marketplace/plugins/%40flagbridge%2Fplugin-mixpanel" \
  -H "Authorization: Bearer fb_admin_YOUR_KEY"

GET /v1/marketplace/plugins/:packageName/versions

List available versions of a plugin.

bash
curl "https://api.flagbridge.io/v1/marketplace/plugins/%40flagbridge%2Fplugin-mixpanel/versions" \
  -H "Authorization: Bearer fb_admin_YOUR_KEY"

Publishing plugins

See the Publishing guide to submit your plugin to the marketplace.