> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Baserow

> Integrate your application with the Baserow API

## 🚀 Quickstart

Connect to Baserow with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Baserow*.
  </Step>

  <Step title="Authorize Baserow">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your instance's base URL and database token. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Baserow API">
    Let's make your first request to the Baserow API (list tables). Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/database/tables/all-tables/" \
          -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.get({
            endpoint: '/database/tables/all-tables/',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/docs/guides/primitives/auth) to integrate Nango in your app.

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Baserow integration guides

Nango-maintained guides for common use cases.

* [How do I link my Baserow account?](/docs/api-integrations/baserow/connect)
  Connect your Baserow account using the Connect UI

Official docs: [Baserow API documentation](https://baserow.io/docs/apis/rest-api)

## 🧩 Pre-built syncs & actions for Baserow

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name           | Description                                                                               | Type                                           | Source code                                                                                                                   |
| ----------------------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `batch-create-rows`     | Create up to 200 rows in a single request.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/batch-create-rows.ts)     |
| `batch-delete-rows`     | Delete up to 200 rows in a single request.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/batch-delete-rows.ts)     |
| `batch-update-rows`     | Update up to 200 rows in a single request.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/batch-update-rows.ts)     |
| `check-token`           | Verify that the configured database token is valid.                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/check-token.ts)           |
| `create-row`            | Create a row in a table.                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/create-row.ts)            |
| `delete-row`            | Delete a row.                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/delete-row.ts)            |
| `get-row`               | Get a single row by id.                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/get-row.ts)               |
| `list-fields`           | List the fields (columns) of a table.                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/list-fields.ts)           |
| `list-row-names`        | Look up display names (primary field values) for specific rows across one or more tables. | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/list-row-names.ts)        |
| `list-rows`             | List rows in a table with optional filtering, search, sorting, and pagination             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/list-rows.ts)             |
| `list-tables`           | List all tables the database token can access.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/list-tables.ts)           |
| `move-row`              | Move a row to a new position (reorder within the table).                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/move-row.ts)              |
| `update-row`            | Update a row.                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/update-row.ts)            |
| `verify-password-field` | Verify a password value against a Password-type field on a row.                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/actions/verify-password-field.ts) |
| `fields`                | Sync field (column) definitions for a configured table                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/syncs/fields.ts)                  |
| `rows`                  | Sync rows for a configured table                                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/syncs/rows.ts)                    |
| `tables`                | Sync all tables visible to the database token.                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/baserow/syncs/tables.ts)                  |

## API gotchas

* Database tokens are scoped per database/table with independent create, read, update, and delete permissions — a token missing a permission will 401 on the matching operation even if the token itself is valid.
* On Baserow Cloud, API requests are capped at 10 concurrent requests per token under a fair use policy. Self-hosted instances have no rate limit.

***
