Mixedbread · Schema
Mixedbread Store
Schema for the Mixedbread Stores API. Stores are multimodal search indexes.
Artificial IntelligenceEmbeddingsRerankingSearchRetrievalRAGVector DatabaseMulti-ModalParsingOpen Weights
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/mixedbread-ai/mixedbread-store-schema.json",
"title": "Mixedbread Store",
"description": "Schema for the Mixedbread Stores API. Stores are multimodal search indexes.",
"type": "object",
"definitions": {
"Store": {
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {"type": "string"},
"name": {"type": "string"},
"description": {"type": "string"},
"metadata": {"type": "object"},
"expires_after": {"$ref": "#/definitions/ExpiresAfter"},
"file_counts": {"$ref": "#/definitions/FileCounts"},
"config": {"$ref": "#/definitions/StoreConfig"},
"created_at": {"type": "string", "format": "date-time"},
"updated_at": {"type": "string", "format": "date-time"}
}
},
"StoreConfig": {
"type": "object",
"description": "Per-store configuration covering embedding model, rerank, contextualization, and chunking.",
"properties": {
"embedding_model": {"type": "string"},
"reranking": {"$ref": "#/definitions/RerankConfig"},
"contextualization": {"$ref": "#/definitions/ContextualizationConfig"},
"chunking_strategy": {"type": "object"}
}
},
"RerankConfig": {
"type": "object",
"properties": {
"enabled": {"type": "boolean"},
"model": {"type": "string"},
"top_k": {"type": "integer"}
}
},
"ContextualizationConfig": {
"type": "object",
"properties": {
"enabled": {"type": "boolean"},
"model": {"type": "string"}
}
},
"ExpiresAfter": {
"type": "object",
"properties": {
"anchor": {"type": "string"},
"seconds": {"type": "integer"}
}
},
"FileCounts": {
"type": "object",
"properties": {
"total": {"type": "integer"},
"in_progress": {"type": "integer"},
"completed": {"type": "integer"},
"failed": {"type": "integer"},
"cancelled": {"type": "integer"}
}
},
"StoreSearchRequest": {
"type": "object",
"required": ["store_identifiers", "query"],
"properties": {
"store_identifiers": {"type": "array", "items": {"type": "string"}},
"query": {"type": "string"},
"top_k": {"type": "integer"},
"filters": {"type": "object"},
"search_options": {"type": "object"}
}
}
},
"oneOf": [
{"$ref": "#/definitions/Store"},
{"$ref": "#/definitions/StoreSearchRequest"}
]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/mixedbread-store"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.