Skip to main content
GET
/
v1
/
namespaces
/
{namespace_id}
/
plugins
/
{plugin_id}
Get plugin details
curl --request GET \
  --url https://api.mixpeek.com/v1/namespaces/{namespace_id}/plugins/{plugin_id}
{
  "plugin": {
    "plugin_id": "<string>",
    "name": "<string>",
    "version": "<string>",
    "s3_archive_url": "<string>",
    "code_hash": "<string>",
    "validation_status": "passed",
    "namespace_id": "<string>",
    "organization_id": "<string>",
    "description": "<string>",
    "validation_errors": [
      "<string>"
    ],
    "security_scan_passed": false,
    "deployed": false,
    "deployment_info": {
      "feature_uri": "<string>",
      "ray_cluster_url": "<string>",
      "ray_deployment_name": "<string>",
      "deployed_at": "2023-11-07T05:31:56Z"
    },
    "manifest": {
      "feature_extractor_name": "<string>",
      "version": "<string>",
      "description": "<string>",
      "input_schema": {},
      "output_schema": {},
      "parameter_schema": {},
      "required_vector_indexes": [
        {}
      ],
      "features": [
        {}
      ],
      "dependencies": [
        "<string>"
      ],
      "feature_uri": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "deployed_at": "2023-11-07T05:31:56Z",
    "resolved_inference_name": "<string>"
  },
  "success": true,
  "presigned_download_url": "<string>"
}

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

namespace_id
string
required
plugin_id
string
required

Query Parameters

return_presigned_urls
boolean
default:false

Generate a presigned download URL for the plugin archive (valid for 1 hour)

Response

Successful Response

Response model for plugin details.

plugin
PluginDocument · object
required

Plugin document stored in MongoDB.

Supports both namespace-level and org-level plugins:

  • Namespace plugins have namespace_id
  • Org plugins have organization_id
success
boolean
default:true
presigned_download_url
string | null

Presigned URL for downloading the plugin archive (valid for 1 hour)