Skip to main content
GET
/
v1
/
store
/
file
/
read
/
{key}
import { JigsawStack } from "jigsawstack";

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

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

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.

Path

key
string
required
The key of the file to be retrieved.
x-api-key
string
required
Your JigsawStack API key

Response

success
boolean
Indicates whether the call was successful.
message
string
The message returned by the API.
url
string
The accessible URL of the file.
key
string
The key of the file.
import { JigsawStack } from "jigsawstack";

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

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