An API endpoint is a URL plus HTTP method. GET /api/matters/42 retrieves matter 42. POST /api/bookings creates a booking. Good endpoints are named after resources (nouns), not actions — verbs go in the HTTP method.
An API endpoint is a URL plus HTTP method. GET /api/matters/42 retrieves matter 42. POST /api/bookings creates a booking. Good endpoints are named after resources (nouns), not actions — verbs go in the HTTP method.