Skip to main content
GET
/
v1
/
public
/
plugins
/
{public_name}
Get Public Plugin
curl --request GET \
  --url https://api.mixpeek.com/v1/public/plugins/{public_name} \
  --header 'Authorization: Bearer <token>'
{
  "public_name": "<string>",
  "publisher_organization_name": "<string>",
  "version": "<string>",
  "trust_tier": "community",
  "code_hash": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "display_name": "<string>",
  "description": "<string>",
  "capabilities": [
    "batch"
  ],
  "tags": [
    "<string>"
  ],
  "category": "<string>",
  "icon_base64": "<string>",
  "manifest": {},
  "model_dependencies": [
    {
      "name": "<string>",
      "source": "builtin",
      "format": "<string>",
      "required": true
    }
  ],
  "readme_markdown": "<string>",
  "install_count": 0
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

public_name
string
required

Public name of the plugin

Response

Successful Response

Full detail for a single public plugin (includes manifest).

public_name
string
required
publisher_organization_name
string
required
version
string
required
trust_tier
enum<string>
required
Available options:
community,
verified,
official
code_hash
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
display_name
string | null
description
string | null
capabilities
enum<string>[]
Available options:
batch,
realtime
tags
string[]
category
string | null
icon_base64
string | null
manifest
Manifest · object
model_dependencies
ModelDependency · object[]
readme_markdown
string | null
install_count
integer
default:0