aspnetcore/fundamentals/openapi/includes/api_endpoint_operation.md
The following sections explain the differences between an API, an API endpoint, and an API operation in the context of ASP.NET Core and OpenAPI documentation.
An API is a set of rules and protocols for building and interacting with software applications. It defines how different software components should communicate. In general web development, "API" typically refers to a web service that exposes functionality over HTTP.
In ASP.NET Core, an API is usually built using controllers or Minimal APIs, which handle incoming HTTP requests and return responses.
ASP.NET Core's internal naming conventions sometimes use "API" differently. For instance, in API Explorer, an "ApiDescription" actually represents an API Operation rather than the full API service. This distinction reflects internal naming conventions and sometimes differ from the broader definition used here.
See Introduction to the ApiExplorer in ASP.NET Core for more information on API Explorer.
An API operation represents a specific action or capability that an API provides. In ASP.NET Core, this corresponds to:
Each operation is defined by its HTTP method (GET, POST, PUT, etc.), path, parameters, and responses.
An API endpoint is a specific URL:
An endpoint is a combination of the API's base URL and a specific path to the desired resource, along with the supported HTTP methods:
app.MapGet(), app.MapPost(), etc.For example, the api/products/{id} endpoint that supports the following operations:
GET /api/products/{id}PUT /api/products/{id}PATCH /api/products/{id}Delete /api/products/{id}HEAD /api/products/{id}Endpoints often include query parameters, for example, GET /api/products?category=electronics&sort=price
In the context of OpenAPI, the documentation describes the API as a whole, including all its endpoints and operations. OpenAPI provides a structured way to document APIs, making it easier for developers to understand how to interact with them.
API Operations are the primary focus of OpenAPI documentation. The OpenAPI specification organizes documentation by operations, which are grouped by paths (endpoints). Each operation is described with details such as parameters, request bodies, responses, and more. This structured format allows tools to generate client libraries, server stubs, and interactive documentation automatically.
In an OpenAPI document:
/api/products/{id}) represents an endpointGET, POST, PUT, etc.) define the operationsExample in OpenAPI JSON format:
json{
"paths": {
"/api/products/{id}": { // This is the endpoint
"get": { // This is the operation
"summary": "Get a product by ID",
"parameters": [...],
"responses": {...}
},
"put": { // Another operation on the same endpoint
"summary": "Update a product",
"parameters": [...],
"responses": {...}
}
}
}
}
The following table summarizes the differences between an API, an API operation, and an API endpoint:
| Concept | API Operation | API Endpoint |
|---|---|---|
| Definition | A logical description of an API action: method + path + behavior | The actual configured HTTP route that listens for requests |
| Level | Conceptual, what action can happen | Concrete, what URL and method are matched |
| Tied to | OpenAPI API design/specification | ASP.NET Core routing at runtime |
| Describes | What the API does for example, "create product" | Where and how to call it, for example, POST https://localhost:7099/api/products, POST https://contoso.com/api/products |
| In ASP.NET Core | Controller actions or Minimal API methods, before routing resolves | Endpoint objects resolved at runtime |