Skip to main content

Documentation Index

Fetch the complete documentation index at: https://jigsaw-13.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The JigsawStack File Retrieval API allows you to access and download files that have been previously uploaded to JigsawStack File Storage. Using a file’s unique key, you can retrieve the file’s accessible URL and metadata, making it easy to integrate stored files into your applications.
  • Retrieve files using their unique storage key
  • Get accessible URLs for file access
  • Simple integration with your existing applications
  • Secure access with API key authentication
  • Support for all file types stored in JigsawStack

API Endpoint

GET /v1/store/file/read/{key}

Quick Start

JavaScript
import { JigsawStack } from "jigsawstack";

const jigsaw = JigsawStack({ apiKey: "your-api-key" });

const result = await jigsaw.store.upload(imageFile, {
  key: "image-123"
});

const response = await jigsaw.store.get({
  "key": "image-123"
})

Response Example

binary data of the file
Find more information on File Retrieval API here