---
title: "Publish an extractor to the marketplace"
method: POST
path: "/v1/extractors/{extractor_id}/publish"
tags: ["Extractor Publishing"]
---

# Publish an extractor to the marketplace

`POST /v1/extractors/{extractor_id}/publish`

## Path parameters

- `extractor_id` string, required — ID of the extractor to publish

## Request body

- PublishExtractorRequest
  - `public_name` string, nullable — URL-safe slug. Auto-generated from display_name if not provided.
  - `display_name` string, nullable
  - `description` string, nullable
  - `icon_base64` string, nullable
  - `readme_markdown` string, nullable
  - `tags` string[]
  - `category` string, nullable
  - `model_dependencies` ModelDependency[]
    - `name` string, required — Model name or identifier
    - `source` string — Where model comes from: 'builtin' (platform service), 'bundled' (in archive), 'org_model' (separate upload)
    - `format` string, nullable — Model format (safetensors, onnx, pytorch, huggingface)
    - `required` boolean — Whether this dependency is required

## Response `200`

Successful Response

- PublishExtractorResponse
  - `public_id` string, required
  - `extractor_id` string, required
  - `public_name` string, required
  - `public_url` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/revisions/f507f74ec843/schema)
