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"
})

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"
})