v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBNamespace Extractors
Get extractor details
Get detailed information about a specific extractor.
Works for both builtin extractors and custom plugins.
Parameters:
- extractor_id: Extractor identifier (e.g., 'text_extractor_v1', 'my_custom_plugin_1_0_0')
Response includes:
- Full schema information (input, output, parameters)
- Vector index configuration
- For custom plugins: deployment status, validation status
get/v1/namespaces/{namespace_id}/extractors/{extractor_id}
Path parameters
namespace_idstring required
extractor_idstring required
Response
Extractor details
Example response
{
"required_vector_indexes": [
{
"description": "Vector index for text embeddings using E5-Large model.",
"index": {
"datatype": "float32",
"description": "Dense vector embedding for text content",
"dimensions": 1024,
"distance": "cosine",
"inference_name": "multilingual_e5_large_instruct_v1",
"name": "text_extractor_v1_embedding",
"supported_inputs": [
"text",
"string"
],
"type": "dense"
},
"name": "embedding",
"type": "single"
}
],
"required_payload_indexes": [
{
"description": "User-created text index for full-text search",
"field_name": "metadata.description",
"is_protected": false,
"type": "text"
}
]
}