# Required for all Flatfile integrationsFLATFILE_API_KEY=sk_your_secret_key_hereFLATFILE_ENVIRONMENT_ID=us_env_your_environment_id# Optional: For webhook endpointsWEBHOOK_URL=https://your-app.com/webhook/flatfile
# Development environmentFLATFILE_API_KEY=sk_dev_your_development_keyFLATFILE_ENVIRONMENT_ID=us_env_dev_your_dev_id# Production environment FLATFILE_API_KEY=sk_prod_your_production_keyFLATFILE_ENVIRONMENT_ID=us_env_prod_your_prod_id
import api from "@flatfile/api";// Secret key is automatically used from FLATFILE_API_KEY environment variable// No additional configuration neededconst workbooks = await api.workbooks.list();