List files in a file storage provider using Panora

We assume for this tutorial that you have a valid Panora API Key, and a connection_token. Find help here.

1

You can find the Typescript SDK here

2

Setup your API Key in your code:

import { Panora } from '@panora/sdk';
const panora = new Panora({ apiKey: process.env.API_KEY });
3

List files in your File Storage:

In this example, we will list files in a File Storage. Visit other sections of the documentation to find category-specific examples
curl --request GET \
--url https://api.panora.dev/filestorage/files \
--header 'x-api-key: <api-key>' \
--header 'x-connection-token: <x-connection-token>'