diff --git a/src/features/feature-view/feature-view.component.html b/src/features/feature-view/feature-view.component.html
index d5b0a92a2eb0f3b389739a94c036b2f0c7dfa536..18b7d05a3e55d7a58a95d3618db251669160902f 100644
--- a/src/features/feature-view/feature-view.component.html
+++ b/src/features/feature-view/feature-view.component.html
@@ -135,6 +135,14 @@
         </a>
       </ng-template>
 
+      <ng-template [ngIf]="downloadLink$ | async" let-downloadLink>
+        <a [href]="downloadLink" mat-list-item target="_blank" class="no-hover">
+          <mat-icon mat-list-icon fontSet="fas" fontIcon="fa-download"></mat-icon>
+          <div mat-line>Download</div>
+        </a>
+      </ng-template>
+      
+
     </mat-action-list>
     
     <readmore-component [collapsedHeight]="240" class="sxplr-mb-8">
diff --git a/src/features/feature-view/feature-view.component.ts b/src/features/feature-view/feature-view.component.ts
index 73b6755472e99a760c433d897ec07cdec1dbb4e2..c9d6b8bafaba8d55a05fa0d2f0165968d19a7cde 100644
--- a/src/features/feature-view/feature-view.component.ts
+++ b/src/features/feature-view/feature-view.component.ts
@@ -50,6 +50,13 @@ export class FeatureViewComponent implements OnChanges {
     })
   )
 
+  downloadLink$ = SAPI.BsEndpoint$.pipe(
+    switchMap(endpoint => this.#featureId.pipe(
+      map(featureId => `${endpoint}/feature/${featureId}/download`),
+      shareReplay(1)
+    ))
+  ) 
+
   busy$ = new BehaviorSubject<boolean>(false)
   
   tabular$ = new BehaviorSubject<TabularFeature<number|string|number[]>>(null)