We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78f283f commit 3f67855Copy full SHA for 3f67855
1 file changed
README.md
@@ -22,7 +22,10 @@ The full API of this library can be found in [api.md](api.md).
22
```js
23
import Grid from '@grid-is/api';
24
25
-const client = new Grid();
+const client = new Grid({
26
+ // Defaults to process.env["GRID_API_KEY"]
27
+ apiKey: "YOUR_API_KEY",
28
+});
29
30
async function main() {
31
const response = await client.workbooks.query('YOUR_WORKBOOK_ID', {
0 commit comments