Skip to main content
POST
/
v1
/
plugins
/
{plugin_id}
/
publish
Publish a plugin to the marketplace
curl --request POST \
  --url https://api.mixpeek.com/v1/plugins/{plugin_id}/publish \
  --header 'Content-Type: application/json' \
  --data '
{
  "public_name": "<string>",
  "display_name": "<string>",
  "description": "<string>",
  "icon_base64": "<string>",
  "readme_markdown": "<string>",
  "tags": [
    "<string>"
  ],
  "category": "<string>",
  "model_dependencies": [
    {
      "name": "<string>",
      "source": "builtin",
      "format": "<string>",
      "required": true
    }
  ]
}
'
{
  "public_id": "<string>",
  "plugin_id": "<string>",
  "public_name": "<string>",
  "public_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Path Parameters

plugin_id
string
required

ID of the plugin to publish

Body

application/json

Request to publish a plugin to the marketplace.

public_name
string | null

URL-safe slug. Auto-generated from display_name if not provided.

Required string length: 3 - 50
Pattern: ^[a-z0-9][a-z0-9-]*[a-z0-9]$
display_name
string | null
Maximum string length: 100
description
string | null
Maximum string length: 1000
icon_base64
string | null
Maximum string length: 300000
readme_markdown
string | null
Maximum string length: 50000
tags
string[]
category
string | null
Maximum string length: 50
model_dependencies
ModelDependency · object[]

Response

Successful Response

public_id
string
required
plugin_id
string
required
public_name
string
required
public_url
string
required