diff --git a/app/api/inventory.py b/app/api/inventory.py
index 91d0b1f32a63904d69348c4193eeeb732daf3e62..8af2af5da5c69cfc0bb9717acdd679a56835b630 100644
--- a/app/api/inventory.py
+++ b/app/api/inventory.py
@@ -174,13 +174,13 @@ def create_locations():
     return create_generic_model(models.Location)
 
 
-@bp.route('/status')
+@bp.route('/statuses')
 @jwt_required
 def get_status():
     return get_generic_model(models.Status)
 
 
-@bp.route('/status', methods=['POST'])
+@bp.route('/statuses', methods=['POST'])
 @jwt_required
 @jwt_groups_accepted('admin', 'create')
 def create_status():
diff --git a/tests/functional/test_api.py b/tests/functional/test_api.py
index 81a16f8fe3d72e1d55f898a9a59755620dc16f4a..8ef3c98541179ef0859d986602a3627d393722e3 100644
--- a/tests/functional/test_api.py
+++ b/tests/functional/test_api.py
@@ -21,7 +21,7 @@ ENDPOINT_MODEL = {
     'inventory/manufacturers': models.Manufacturer,
     'inventory/models': models.Model,
     'inventory/locations': models.Location,
-    'inventory/status': models.Status,
+    'inventory/statuses': models.Status,
     'inventory/items': models.Item,
     'network/networks': models.Network,
     'network/interfaces': models.Interface,