GET /v1/search/query
Search Entities
Full-text search across all entity types in the metadata catalog
GET
GET /v1/search/query
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Search Entities
Full-text search across all entity types in the metadata catalog. Uses Elasticsearch query syntax under the hood.Query Parameters
Search query string. Supports Elasticsearch query syntax including wildcards, boolean operators, and phrase matching.
Search index to query. Options:
all, table_search_index, topic_search_index, dashboard_search_index, pipeline_search_index, mlmodel_search_index, container_search_index, search_entity_search_index, glossary_term_search_index, tag_search_index, user_search_index, team_search_index, domain_search_index, data_product_search_index.Starting offset for pagination.
Number of results to return.
Include soft-deleted entities in the results.
Field to sort by (e.g.,
name, updatedAt, totalVotes).Sort order:
asc or desc.Track exact total hit count. Set to
false for faster queries when exact count is not needed.Include entity hierarchy in results.
Include the full source document in results. Set to
false to return only metadata.Comma-separated list of source fields to include. Use this to limit the response payload.
JSON query filter using Elasticsearch DSL. Applied before scoring.
JSON post-filter using Elasticsearch DSL. Applied after scoring without affecting aggregations.
GET /v1/search/query
Returns
Returns an Elasticsearch-style response containing matched entities ranked by relevance score.Response
Time in milliseconds the search took to execute.
Whether the search timed out.
Search results container.
Error Handling
| Code | Error Type | Description |
|---|---|---|
400 | BAD_REQUEST | Invalid query syntax or parameters |
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to search entities |