loading
loading
A specific URL on an API that handles one kind of request.
An endpoint is where a client sends a request for one job: POST /api/checkout, GET /api/profile, or DELETE /api/session. The route tells the server which handler to run, and the handler returns a response. If an integration fails, confirm the endpoint, method, payload, and auth first.
Plainly
Think of Endpoint as a named building block in a big LEGO app. A specific URL on an API that handles one kind of request.
In practice
Use it when you are mapping how the app is structured or explaining a feature to a teammate or agent. In practice, define the owner, input, output, and failure mode before you rely on it.