BP137: Use plural nouns
Plural nouns allow you to easily communicate that there are multiple items in the collection.
Correct:
GET /api/orders
It's obvious from this URL that the list of orders will be returned.
Incorrect:
GET /api/order
It's not obvious from this URL that the list of orders will be returned.