diff --git a/api/funkwhale_api/music/licenses.py b/api/funkwhale_api/music/licenses.py
index 599d6a7dad3058e9ec31db8a7fdf1f34862c17cf..dc0494100f509d9ccce515462e1201d8536fa0af 100644
--- a/api/funkwhale_api/music/licenses.py
+++ b/api/funkwhale_api/music/licenses.py
@@ -277,6 +277,17 @@ LICENSES = [
             "http://creativecommons.org/publicdomain/zero/1.0/"
         ],
     },
+    {
+        "code": "LAL-1.3",
+        "name": "Licence Art Libre 1.3",
+        "redistribute": True,
+        "derivative": True,
+        "commercial": True,
+        "attribution": True,
+        "copyleft": True,
+        "url": "https://artlibre.org/licence/lal",
+        "identifiers": ["http://artlibre.org/licence/lal"],
+    },
     # Creative commons version 4.0
     get_cc_license(version="4.0", perks=["by"]),
     get_cc_license(version="4.0", perks=["by", "sa"]),
diff --git a/api/tests/music/licenses.json b/api/tests/music/licenses.json
index 5a2ecd1323c44f302ef91d2cfde77a9aedf8b7d1..4b6251c07611d112ba1904df3d8fb26badfd3bb0 100644
--- a/api/tests/music/licenses.json
+++ b/api/tests/music/licenses.json
@@ -1,4 +1,17 @@
 [
+    {
+        "code": "LAL-1.3",
+        "name": "Licence Art Libre 1.3",
+        "redistribute": true,
+        "derivative": true,
+        "commercial": true,
+        "attribution": true,
+        "copyleft": true,
+        "url": "https://artlibre.org/licence/lal",
+        "identifiers": [
+            "http://artlibre.org/licence/lal"
+        ]
+    },
     {
         "name": "Creative commons - Attribution 1.0",
         "code": "cc-by-1.0",
diff --git a/changes/changelog.d/1088.enhancement b/changes/changelog.d/1088.enhancement
new file mode 100644
index 0000000000000000000000000000000000000000..150a7e2cd6ea42ad8a21d78f8cac5d8bf9060943
--- /dev/null
+++ b/changes/changelog.d/1088.enhancement
@@ -0,0 +1 @@
+Added support for Licence Art Libre (#1088)
\ No newline at end of file