diff --git a/apps/server/src/utils/fetch.ts b/apps/server/src/utils/fetch.ts
index a9326592..a8a0d18b 100644
--- a/apps/server/src/utils/fetch.ts
+++ b/apps/server/src/utils/fetch.ts
@@ -51,8 +51,8 @@ export const fetchProjectsWithSitesForUser = async (bearer_token: string) => {
 
 export const fetchAllProjectsWithSites = async () => {
   const response = await fetch(
-    `${env.PLANET_API_URL}/app/projects?_scope=extended`,
-  );
+      `${env.PLANET_API_URL}/app/projects?_scope=extended&filter[purpose]=trees,conservation`,
+    );
   const data = await response.json();
   return data;
 };