Database
Read from and write to Fastn's internal database using SQL queries. Manage structured data, run lookups, and store results within your automation flows.
Last updated
Was this helpful?
Read from and write to Fastn's internal database using SQL queries. Manage structured data, run lookups, and store results within your automation flows.
Use this to read from or write to Fastn's internal database using SQL queries. Ideal for managing structured data inside your flows.

You can run queries to select, insert, or create tables.
Queries can also use outputs from earlier steps.
Use the Database component to interact directly with Fastn's internal storage. You can create tables, insert new records, or retrieve structured data using SQL. It's perfect for managing intermediate or persistent datasets within your flows, such as syncing user information, logging transactions, or filtering active records.
Example Retrieve a list of active users to feed into a downstream connector:
Store and reuse structured data between flow steps
Perform SQL-based lookups and filters dynamically
Combine database results with outputs from earlier actions
Last updated
Was this helpful?
Was this helpful?
SELECT id, email FROM users WHERE active = True
