GET /v1/apiEndpoints/{id}
Retrieve an API Endpoint
Get an API endpoint by ID or fully qualified name
GET
GET /v1/apiEndpoints/{id}
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.
Retrieve an API Endpoint
Get a single API endpoint by its unique ID or fully qualified name.Get by ID
UUID of the API endpoint to retrieve.
Comma-separated list of fields to include (e.g.,
owners,tags,extension,domains,sourceHash).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/apiEndpoints/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the API endpoint (e.g.,
sample_api_service.pet.addPet).Comma-separated list of fields to include:
owners, tags, extension, domains, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/apiEndpoints/{id}
Returns
Returns an API endpoint object with all requested fields populated.Response
Unique identifier for the API endpoint (UUID format).
API endpoint name.
Fully qualified name in format
service.collection.endpointName.Human-readable display name.
Description of the API endpoint in Markdown format.
URL for the API endpoint.
HTTP request method (GET, POST, PUT, PATCH, DELETE).
Schema describing the request body.
Schema describing the response body.
Reference to the parent API service.
Type of API service (e.g., Rest).
Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this API endpoint |
404 | NOT_FOUND | API endpoint with given ID or FQN does not exist |