# Peaka
## Docs
- [Bring your own AI model](https://docs.peaka.com/ai-setup/bring-your-own-ai-model.md): How to use custom AI models with Peaka
- [Chat with agent](https://docs.peaka.com/api-reference/ai--agentv2/chat-with-agent.md)
- [Chat with agent via stream](https://docs.peaka.com/api-reference/ai--agentv2/chat-with-agent-via-stream.md)
- [Delete ai-agent thread](https://docs.peaka.com/api-reference/ai--agentv2/delete-ai-agent-thread.md)
- [Get ai-agent thread](https://docs.peaka.com/api-reference/ai--agentv2/get-ai-agent-thread.md)
- [Get png image of current ai workflow](https://docs.peaka.com/api-reference/ai--agentv2/get-png-image-of-current-ai-workflow.md)
- [List ai-agent threads](https://docs.peaka.com/api-reference/ai--agentv2/list-ai-agent-threads.md)
- [Update ai-agent thread display name](https://docs.peaka.com/api-reference/ai--agentv2/update-ai-agent-thread-display-name.md)
- [Authentication](https://docs.peaka.com/api-reference/authentication.md): API Authentication
- [Create Connection](https://docs.peaka.com/api-reference/connections/create-connection.md): This endpoint allows you to create a new connection for a specified project.
- [Delete Connection](https://docs.peaka.com/api-reference/connections/delete-connection.md): Deletes the specified Connection. Any catalogs using this connection will lose access to their data source.
- [Get Connection](https://docs.peaka.com/api-reference/connections/get-connection.md): Returns details of a specified Connection.
- [Get Connection Config](https://docs.peaka.com/api-reference/connections/get-connection-config.md): Returns the configuration schema for a specific connection type, including required credential fields and their types. Use this to understand what parameters are needed when creating a connection of this type.
- [Get Connection Detail](https://docs.peaka.com/api-reference/connections/get-connection-detail.md): Get connection detail by ID. Returns only non-sensitive information.
- [List Connection Config](https://docs.peaka.com/api-reference/connections/list-connection-config.md): List all connection configurations. This will return a list of all connection configurations available in the system.
- [List Connections](https://docs.peaka.com/api-reference/connections/list-connections.md): Retrieves all connections for the specified Project. A Connection represents an authenticated link to an external data source (e.g., Stripe, Airtable, PostgreSQL).
- [Oauth2 Callback](https://docs.peaka.com/api-reference/connections/oauth2-callback.md): This callback/webhook is used while creating a new connection with Oauth2. See https://docs.peaka.com/how-to-guides/how-to-create-oauth2-based-connections-via-peaka for more information.
- [Update Connection](https://docs.peaka.com/api-reference/connections/update-connection.md): Updates the specified Connection. You can modify the name, credentials, or other parameters. The request body follows the same structure as the Create Connection endpoint.
- [Cancel Running Full Refresh](https://docs.peaka.com/api-reference/data--cache/cancel-running-full-refresh.md): Cancels a currently running full refresh (resync) workflow for the specified cache. This sends a cancellation signal to the underlying Temporal workflow.
- [Cancel Running Incremental Update](https://docs.peaka.com/api-reference/data--cache/cancel-running-incremental-update.md): Cancels a currently running incremental sync workflow for the specified cache. This sends a cancellation signal to the underlying Temporal workflow.
- [Create Batch Cache](https://docs.peaka.com/api-reference/data--cache/create-batch-cache.md): Creates multiple caches in a single request. Each item in the array follows the same schema as the single create cache endpoint. Caches are created independently; if one fails, the others may still succeed.
- [Create Cache](https://docs.peaka.com/api-reference/data--cache/create-cache.md): Creates a new cache for a specific table in a catalog. Caching copies data from an external data source into the internal Peaka BigTable store for faster query performance.
- [Delete Cache](https://docs.peaka.com/api-reference/data--cache/delete-cache.md): Permanently deletes a cache and all its associated data. This operation: - Cancels any running or scheduled sync workflows (both incremental and full refresh). - Drops the cached table from the internal BigTable store. - Removes all cache settings, execution history, and status records.
- [Get All Cache Statuses of a Catalog](https://docs.peaka.com/api-reference/data--cache/get-all-cache-statuses-of-a-catalog.md): Returns the status of all caches within a specific catalog of a project. This filters the cache list to only those belonging to the given catalog, which is useful when managing caches per data source connection.
- [Get All Cache Statuses of a Project](https://docs.peaka.com/api-reference/data--cache/get-all-cache-statuses-of-a-project.md): Returns the status of all caches within a project. Each entry in the response array contains the same status information as the single cache status endpoint, including execution details for both sync types.
- [Get Cache Status](https://docs.peaka.com/api-reference/data--cache/get-cache-status.md): Returns the current status of a specific cache, including execution details for both the last incremental sync and the last full refresh.
- [Trigger Full Refresh Cache Update](https://docs.peaka.com/api-reference/data--cache/trigger-full-refresh-cache-update.md): Manually triggers a full refresh (resync) for the specified cache. This drops all existing cached data and rebuilds the cache from scratch by re-reading the entire source table.
- [Trigger Incremental Cache Update](https://docs.peaka.com/api-reference/data--cache/trigger-incremental-cache-update.md): Manually triggers an incremental (delta) sync for the specified cache. This syncs only the rows that have changed (inserted, updated, or deleted) since the last successful sync.
- [Update Cache Settings](https://docs.peaka.com/api-reference/data--cache/update-cache-settings.md): Updates the sync schedules of an existing cache. Use this to change how frequently the cache is refreshed.
- [Create Catalog](https://docs.peaka.com/api-reference/data--catalogs/create-catalog.md): Creates a new catalog in the specified project. A catalog represents a connected data source — such as Airtable, Stripe, or Google Sheets — that exposes its schemas and tables for querying within Peaka. Requires a `name` and a `connectionId` referencing an existing connection. Some connectors accept…
- [Delete Catalog](https://docs.peaka.com/api-reference/data--catalogs/delete-catalog.md): Permanently removes the specified catalog from the project. This disconnects the underlying data source and makes all its schemas and tables unavailable for querying. This action is irreversible.
- [List Catalogs](https://docs.peaka.com/api-reference/data--catalogs/list-catalogs.md): Returns all catalogs registered in the specified project. Each catalog represents a data source connected to Peaka, such as Airtable, Stripe, or an internal Peaka storage. Built-in catalog types like `internal` (Peaka Tables and BI Tables) and `query` (Peaka Queries) are always present.
- [List Columns](https://docs.peaka.com/api-reference/data--catalogs/list-columns.md): Lists all columns for a specific table within a catalog. Returns full column metadata including name, data type, display name, default value, and constraints (nullability, uniqueness). Some connectors expose additional virtual columns (prefixed with `_q_`) that can be used to pass query-time paramet…
- [List Schemas](https://docs.peaka.com/api-reference/data--catalogs/list-schemas.md): Returns all schemas available under the specified catalog. Schemas are logical groupings of tables within a catalog. For external connectors, schemas typically correspond to databases or namespaces exposed by the data source.
- [List Tables](https://docs.peaka.com/api-reference/data--catalogs/list-tables.md): Lists all tables available under the specified schema of a catalog. Each table entry includes its catalog and schema context along with caching metadata (`isCacheable`, `isDynamicTable`, `isCached`). For the internal catalog, this includes [Peaka Tables](https://docs.peaka.com/connecting-your-data/p…
- [Read Catalog](https://docs.peaka.com/api-reference/data--catalogs/read-catalog.md): Retrieves the details of a single catalog by its ID. Returns the catalog's name, display name, catalog type, and the associated connection ID.
- [Search](https://docs.peaka.com/api-reference/data--catalogs/search.md): Search for catalogs, schemas, and tables across the project. You can filter the search results by specifying a catalog or schema. You can also specify a limit and offset for pagination.
- [Share Catalog](https://docs.peaka.com/api-reference/data--catalogs/share-catalog.md): Shares a catalog from the current project with another Peaka project. The target project gains read access to the catalog's schemas and tables. Provide the `targetProjectId` of the project you want to share the catalog with.
- [Table is Cached](https://docs.peaka.com/api-reference/data--catalogs/table-is-cached.md): Checks whether the specified table has an active cache in Peaka. When a table is cached, its data is stored locally in Peaka, enabling significantly faster query performance compared to live queries against the original data source. Returns `isCached: true` if a cache is currently active, or `false`…
- [Table Statistics](https://docs.peaka.com/api-reference/data--catalogs/table-statistics.md): Returns statistical metadata for the specified table. Includes per-column `distinctFraction` values, which represent the estimated fraction of distinct values in a column relative to the total row count. These statistics are used internally by Peaka's query optimizer to improve query planning and ex…
- [Add BI Column](https://docs.peaka.com/api-reference/data--internal-tables/add-bi-column.md): Adds one or more columns to the specified [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table). Each column definition includes its name, data type, display name, optional default value, and constraints (nullability, uniqueness). Peaka BI Table supports VARCHAR, BIGINT, BOOLE…
- [Add Column](https://docs.peaka.com/api-reference/data--internal-tables/add-column.md): Adds one or more columns to the specified [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table). Each column definition includes its name, data type, display name, optional default value, and constraints (nullability, uniqueness). Peaka Table supports a wide range of data types incl…
- [Create BI Table](https://docs.peaka.com/api-reference/data--internal-tables/create-bi-table.md): Creates a new [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table) with the given name in the specified project. Peaka BI Table uses a column-oriented storage approach optimized for large datasets of over one million records, offering fast filtering and grouping performance w…
- [Create Table](https://docs.peaka.com/api-reference/data--internal-tables/create-table.md): Creates a new [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table) with the given name in the specified project. Peaka Table is an internal relational database within Peaka that supports structured data storage with full CRUD operations. It accommodates a wide range of data types i…
- [Delete BI Column](https://docs.peaka.com/api-reference/data--internal-tables/delete-bi-column.md): Permanently removes a column from the specified [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table). This action is irreversible — the column and all its stored data will be deleted from the BI Table.
- [Delete BI Table](https://docs.peaka.com/api-reference/data--internal-tables/delete-bi-table.md): Permanently deletes the specified [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table) and all its data from the project. This action is irreversible — all rows, columns, and schema definitions associated with the BI Table will be removed.
- [Delete Column](https://docs.peaka.com/api-reference/data--internal-tables/delete-column.md): Permanently removes a column from the specified [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table). This action is irreversible — the column and all its stored data will be deleted from the table.
- [Delete Table](https://docs.peaka.com/api-reference/data--internal-tables/delete-table.md): Permanently deletes the specified [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table) and all its data from the project. This action is irreversible — all rows, columns, and schema definitions associated with the table will be removed.
- [Get Sample CSV](https://docs.peaka.com/api-reference/data--internal-tables/get-sample-csv.md): Returns a downloadable sample CSV file for the specified internal table in a project.
- [Import CSV](https://docs.peaka.com/api-reference/data--internal-tables/import-csv.md): Imports data from a CSV file into a specified internal table in a given project.
- [List BI Columns](https://docs.peaka.com/api-reference/data--internal-tables/list-bi-columns.md): Lists all columns defined in the specified [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table). Returns column metadata including name, data type, display name, default value, and constraints such as nullability and uniqueness. Note that Peaka BI Table does not support JSON…
- [List BI Tables](https://docs.peaka.com/api-reference/data--internal-tables/list-bi-tables.md): Lists all [Peaka BI Tables](https://docs.peaka.com/connecting-your-data/peaka-bi-table) in the project. Peaka BI Table is a robust data management solution optimized for handling large datasets of over one million records. It uses a column-oriented data storage approach, resulting in exceptionally f…
- [List Columns](https://docs.peaka.com/api-reference/data--internal-tables/list-columns.md): Lists all columns defined in the specified [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table). Returns column metadata including name, data type, display name, default value, and constraints such as nullability and uniqueness.
- [List Tables](https://docs.peaka.com/api-reference/data--internal-tables/list-tables.md): Lists all [Peaka Tables](https://docs.peaka.com/connecting-your-data/peaka-table) in the project. Peaka Table is an internal relational database within Peaka that allows you to organize and manage data efficiently. It supports structured data storage and enables you to add, delete, filter, and edit…
- [Update BI Column](https://docs.peaka.com/api-reference/data--internal-tables/update-bi-column.md): Updates the definition of an existing column in the specified [Peaka BI Table](https://docs.peaka.com/connecting-your-data/peaka-bi-table). Allows modifying the column's name, display name, data type, default value, and constraints such as nullability and uniqueness.
- [Update Column](https://docs.peaka.com/api-reference/data--internal-tables/update-column.md): Updates the definition of an existing column in the specified [Peaka Table](https://docs.peaka.com/connecting-your-data/peaka-table). Allows modifying the column's name, display name, data type, default value, and constraints such as nullability and uniqueness.
- [Add Relation To Metadata](https://docs.peaka.com/api-reference/data--metadata/add-relation-to-metadata.md)
- [Create golden sql for the project](https://docs.peaka.com/api-reference/data--metadata/create-golden-sql-for-the-project.md)
- [Delete categorical values from the column meta and remove the scheduled job](https://docs.peaka.com/api-reference/data--metadata/delete-categorical-values-from-the-column-meta-and-remove-the-scheduled-job.md)
- [Delete golden sql from the project.](https://docs.peaka.com/api-reference/data--metadata/delete-golden-sql-from-the-project.md)
- [Delete Relation From Metadata](https://docs.peaka.com/api-reference/data--metadata/delete-relation-from-metadata.md)
- [Generate categorical values from the column.](https://docs.peaka.com/api-reference/data--metadata/generate-categorical-values-from-the-column.md)
- [Generate sample ai questions for the project](https://docs.peaka.com/api-reference/data--metadata/generate-sample-ai-questions-for-the-project.md)
- [Generate semantics for the table](https://docs.peaka.com/api-reference/data--metadata/generate-semantics-for-the-table.md)
- [Get Metadata Refresh Job Callback](https://docs.peaka.com/api-reference/data--metadata/get-metadata-refresh-job-callback.md)
- [Get Metadata Refresh Job Status](https://docs.peaka.com/api-reference/data--metadata/get-metadata-refresh-job-status.md)
- [Get Project Catalog Metadata Relations](https://docs.peaka.com/api-reference/data--metadata/get-project-catalog-metadata-relations.md)
- [Get Project Metadata](https://docs.peaka.com/api-reference/data--metadata/get-project-metadata.md)
- [List of golden sqls for the project.](https://docs.peaka.com/api-reference/data--metadata/list-of-golden-sqls-for-the-project.md)
- [Refresh Project Metadata](https://docs.peaka.com/api-reference/data--metadata/refresh-project-metadata.md)
- [Register Metadata Refresh Job Callback](https://docs.peaka.com/api-reference/data--metadata/register-metadata-refresh-job-callback.md)
- [Semantic query golden sqls for the project.](https://docs.peaka.com/api-reference/data--metadata/semantic-query-golden-sqls-for-the-project.md)
- [Semantic query metadata for the project.](https://docs.peaka.com/api-reference/data--metadata/semantic-query-metadata-for-the-project.md)
- [Unregister Metadata Refresh Job Callback](https://docs.peaka.com/api-reference/data--metadata/unregister-metadata-refresh-job-callback.md)
- [Update Metadata](https://docs.peaka.com/api-reference/data--metadata/update-metadata.md)
- [Update Metadata ai usage per catalog level](https://docs.peaka.com/api-reference/data--metadata/update-metadata-ai-usage-per-catalog-level.md)
- [Update Metadata ai usage per schema level](https://docs.peaka.com/api-reference/data--metadata/update-metadata-ai-usage-per-schema-level.md)
- [Update Relation From Metadata](https://docs.peaka.com/api-reference/data--metadata/update-relation-from-metadata.md)
- [Create Parametric Table](https://docs.peaka.com/api-reference/data--parametric-tables/create-parametric-table.md): Creates a new Parametric Table under the specified catalog. A Parametric Table binds specific query parameter values to a source table from a REST catalog, producing a new named table (e.g., xyz_customers) that can be queried directly without supplying those parameters at query time. Fo…
- [Delete Parametric Table](https://docs.peaka.com/api-reference/data--parametric-tables/delete-parametric-table.md): Deletes a Parametric Table identified by its target schema and table name. The original source table is not affected.
- [List Parametric Tables](https://docs.peaka.com/api-reference/data--parametric-tables/list-parametric-tables.md): Lists all Parametric Tables defined under the specified catalog. A Parametric Table is a pre-configured view of a REST-based table with fixed query parameter values (e.g., _q_account), allowing it to be queried like a regular table without passing those parameters each time.
- [Create Query](https://docs.peaka.com/api-reference/data--queries/create-query.md): Creates a new query under the given project. Supports plain and materialized query types. Optionally accepts a path to place the query in a folder hierarchy.
- [Delete Query](https://docs.peaka.com/api-reference/data--queries/delete-query.md): Permanently deletes a query by its ID.
- [Execute Query](https://docs.peaka.com/api-reference/data--queries/execute-query.md): Executes a query and returns the result. Accepts a query builder object, a query ID, a query name, or a raw SQL statement.
- [List Queries](https://docs.peaka.com/api-reference/data--queries/list-queries.md): Returns all queries belonging to the given project. Each query includes its path and folderId if it is placed in a folder.
- [Read Query](https://docs.peaka.com/api-reference/data--queries/read-query.md): Returns a single query by its ID. Includes path and folderId if the query is placed in a folder.
- [Update Query](https://docs.peaka.com/api-reference/data--queries/update-query.md): Updates the display name, SQL, or schedule of an existing query. To move a query to a different folder use the Update Query Path endpoint.
- [Update Query Path](https://docs.peaka.com/api-reference/data--queries/update-query-path.md): Moves a query to the specified folder path. The path is resolved by the backend service.
- [Add/Remove Queries In/From Folder](https://docs.peaka.com/api-reference/data--query-folders/addremove-queries-infrom-folder.md): Moves queries into or out of a folder. Queries in queryIdsAdded are moved to the folder's path, queries in queryIdsRemoved are moved to root ("/").
- [Create Query Folder](https://docs.peaka.com/api-reference/data--query-folders/create-query-folder.md): Creates a new query folder at the root level. The folder name is used to build the path (e.g. folderName "Reports" becomes path "/Reports"). Intermediate parent folders are created automatically if a nested path is provided.
- [Create Query Folder Under Parent](https://docs.peaka.com/api-reference/data--query-folders/create-query-folder-under-parent.md): Creates a new query folder as a child of the specified parent folder. The gateway resolves the parent folder's path and creates the new folder at "{parentPath}/{folderName}".
- [Delete Query Folder](https://docs.peaka.com/api-reference/data--query-folders/delete-query-folder.md): Deletes a query folder by its ID. By default, only empty folders can be deleted. Set force=true to recursively delete the folder along with all its sub-folders and contained queries.
- [Get Query Folder Tree](https://docs.peaka.com/api-reference/data--query-folders/get-query-folder-tree.md): Returns the folder hierarchy as a tree structure. Optionally includes queries within each folder node. Use rootFolderId to get a subtree starting from a specific folder.
- [List Query Folders](https://docs.peaka.com/api-reference/data--query-folders/list-query-folders.md): Returns all query folders belonging to the given project as a flat list.
- [Move Query Folder](https://docs.peaka.com/api-reference/data--query-folders/move-query-folder.md): Moves a query folder to a new path in the hierarchy. All child folders and their paths are updated accordingly.
- [Read Query Folder](https://docs.peaka.com/api-reference/data--query-folders/read-query-folder.md): Returns a single folder by its ID, including its direct child folders and the queries it contains.
- [Rename Query Folder](https://docs.peaka.com/api-reference/data--query-folders/rename-query-folder.md): Renames a query folder. The folder's path segments are updated to reflect the new name.
- [Create a semantic catalog](https://docs.peaka.com/api-reference/data--semantic-catalogs/create-a-semantic-catalog.md): Creates a new Semantic Catalog in the specified Project. A Semantic Catalog is a virtual catalog that groups Semantic Tables, which are backed by saved queries.
- [Create a semantic table](https://docs.peaka.com/api-reference/data--semantic-catalogs/create-a-semantic-table.md): Creates a new Semantic Table within a Semantic Catalog. A Semantic Table maps a saved query to a table, making it queryable via SQL like any other table.
- [Delete a semantic table](https://docs.peaka.com/api-reference/data--semantic-catalogs/delete-a-semantic-table.md): Deletes the specified Semantic Table from a Semantic Catalog.
- [Share Semantic Catalog](https://docs.peaka.com/api-reference/data--semantic-catalogs/share-semantic-catalog.md): Shares a Semantic Catalog with another Project. The target Project gains read access to the catalog's schemas and tables.
- [Transpile SQL](https://docs.peaka.com/api-reference/data--sql/transpile-sql.md): Transpiles a SQL query from Peaka's SQL dialect (Trino) into the specified target dialect (e.g., mysql, postgres, bigquery). Useful when you need to export or reuse queries written in Peaka in other database systems.
- [Init Session](https://docs.peaka.com/api-reference/embedded-peaka-api/init-session.md): Initializes an Embedded Peaka session and returns a session URL that can be used to embed the Peaka UI in an iframe.
- [Init Session (Deprecated)](https://docs.peaka.com/api-reference/embedded-peaka-api/init-session-deprecated.md): Deprecated. Use POST /ui/initSession instead, which supports feature flags, session modes, and additional configuration options.
- [Introduction](https://docs.peaka.com/api-reference/introduction.md): API endpoints
- [List Organizations](https://docs.peaka.com/api-reference/organization--organizations/list-organizations.md): Retrieves all the organizations accessible by the authenticated user.
- [Read Organization](https://docs.peaka.com/api-reference/organization--organizations/read-organization.md): Returns the specified Organization.
- [Create Project](https://docs.peaka.com/api-reference/organization--projects/create-project.md): Creates a new Project within the given Workspace.
- [Delete Project](https://docs.peaka.com/api-reference/organization--projects/delete-project.md): Deletes the specified Project within a Workspace.
- [List Projects](https://docs.peaka.com/api-reference/organization--projects/list-projects.md): Fetches all Projects within the given Workspace.
- [Read Project](https://docs.peaka.com/api-reference/organization--projects/read-project.md): Returns details of a specified Project.
- [Update Project](https://docs.peaka.com/api-reference/organization--projects/update-project.md): Updates the specified Project within a Workspace.
- [Create Workspace](https://docs.peaka.com/api-reference/organization--workspaces/create-workspace.md): The endpoint allows you to create a new Workspace within an Organization.
- [Delete Workspace](https://docs.peaka.com/api-reference/organization--workspaces/delete-workspace.md): Deletes a specified Workspace within an Organization.
- [List Workspaces](https://docs.peaka.com/api-reference/organization--workspaces/list-workspaces.md): Returns all workspaces under the specified Organization.
- [Read Workspace](https://docs.peaka.com/api-reference/organization--workspaces/read-workspace.md): Returns details of a specified Workspace, which is a collaborative environment within an Organization that groups Projects together.
- [Update Workspace](https://docs.peaka.com/api-reference/organization--workspaces/update-workspace.md): Updates the specified Workspace within an Organization.
- [Create API Key](https://docs.peaka.com/api-reference/projects--api-key/create-api-key.md): Creates a new API Key for the specified Project. The API Key is used to authenticate requests to the Peaka API on behalf of the Project.
- [Delete API Key](https://docs.peaka.com/api-reference/projects--api-key/delete-api-key.md): Deletes the specified API Key. Once deleted, any requests authenticated with this key will be rejected.
- [List API Keys](https://docs.peaka.com/api-reference/projects--api-key/list-api-keys.md): Retrieves all API Keys associated with the specified Project.
- [Create Project](https://docs.peaka.com/api-reference/projects-deprecated/create-project.md): Deprecated. Use the Create Project endpoint under Organization instead.
- [Delete Project](https://docs.peaka.com/api-reference/projects-deprecated/delete-project.md): Deprecated. Use the Delete Project endpoint under Organization instead.
- [List Projects](https://docs.peaka.com/api-reference/projects-deprecated/list-projects.md): Deprecated. Use the List Projects endpoint under Organization instead.
- [Read Project](https://docs.peaka.com/api-reference/projects-deprecated/read-project.md): Deprecated. Use the Read Project endpoint under Organization instead.
- [Update Project](https://docs.peaka.com/api-reference/projects-deprecated/update-project.md): Deprecated. Use the Update Project endpoint under Organization instead.
- [Servers](https://docs.peaka.com/api-reference/servers.md): Available Servers
- [Structure](https://docs.peaka.com/api-reference/structure.md): Understanding the core components and their relationships in the Peaka API ecosystem.
- [Get JDBC Driver](https://docs.peaka.com/api-reference/supported-drivers/get-jdbc-driver.md): Returns the JDBC connection string for connecting to Peaka's query engine from JDBC-compatible tools.
- [Get SQL Alchemy Driver](https://docs.peaka.com/api-reference/supported-drivers/get-sql-alchemy-driver.md): Returns the SQL Alchemy connection string for connecting to Peaka's query engine. SQL Alchemy supports only one catalog at a time, so a catalogName must be provided.
- [List Supported Drivers](https://docs.peaka.com/api-reference/supported-drivers/list-supported-drivers.md): Returns connection strings for all supported drivers (JDBC, SQL Alchemy). These can be used to connect to Peaka's query engine from external tools.
- [Looker Studio](https://docs.peaka.com/bi-tools/looker-studio.md): Learn how you can use Peaka in Looker Studio
- [Metabase](https://docs.peaka.com/bi-tools/metabase.md): Peaka and Metabase integration brings together the power of Peaka's data platform with the visualization capabilities of Metabase's business intelligence platform. With this integration, customers can leverage Peaka's robust data processing and management capabilities to feed into Metabase’s intuiti…
- [Preset](https://docs.peaka.com/bi-tools/preset.md): Welcome to the installation guide for integrating Apache Preset with Peaka. As a leading data platform, Peaka provides seamless integration with various business intelligence and data visualization platforms, including Apache Preset. This document will guide you through the step-by-step process to s…
- [Superset](https://docs.peaka.com/bi-tools/superset.md): Welcome to the installation guide for integrating Apache Superset with Peaka. As a leading data platform, Peaka provides seamless integration with various business intelligence and data visualization platforms, including Apache Superset. This document will guide you through the step-by-step process…
- [Tableau](https://docs.peaka.com/bi-tools/tableau.md): Welcome to the installation guide for integrating Tableau with Peaka. As a leading data platform, Peaka provides seamless integration with various business intelligence and data visualization platforms, including Tableau. This document will guide you through the step-by-step process to set up this i…
- [Tableau Web Data Connector](https://docs.peaka.com/bi-tools/tableau-web-data.md): Welcome to the installation guide for integrating Tableau Web Data Connector with Peaka. As a leading data platform, Peaka provides seamless integration with various business intelligence and data visualization platforms, including Tableau Web Data Connector. This document will guide you through the…
- [How to Build a Customer Health Dashboard with SaaS Data](https://docs.peaka.com/blogs/build-health-dashboard-zendesk-hubspot-stripe.md): Quickly build a customer health dashboard without ETL pipelines. Integrate data from HubSpot, Stripe, and Zendesk to identify risks and boost retention.
- [How to Build a Churn Analysis Dashboard in 1 Hour Using Peaka and v0.dev](https://docs.peaka.com/blogs/how-to-build-churn-dashboard.md): Build a dashboard that identifies Pro- and Enterprise-tier subscribers who contacted support shortly before canceling their subscriptions.
- [Use any Rest API in RAG with Peaka and Pinecone](https://docs.peaka.com/blogs/how-to-build-rag-with-peaka.md): Learn how to use Peaka's RAG Capabilities with a sample project.
- [Build AI Assistants with Peaka's API MCP Server](https://docs.peaka.com/blogs/how-to-use-peaka-api-mcp-server.md): Learn how to supercharge your AI assistants with Peaka's comprehensive API through the Model Context Protocol server, enabling seamless data management and querying capabilities.
- [Mastra Agent with Peaka's MCP Server](https://docs.peaka.com/blogs/mastra-agent-with-peaka-mcp.md): Create a smart SQL agent using the Mastra framework and Peaka, then deploy it with Vercel. Query your data easily with natural language.
- [Why Semantics Matters in Text-to-SQL Systems](https://docs.peaka.com/blogs/why-semantics-matters.md): See how semantic modeling dramatically improves SQL accuracy, consistency, and query relevance, helping Peaka AI surpass Spider benchmarks.
- [CDC - MariaDB Setup Documentation](https://docs.peaka.com/cdc-setup/cdc-mariadb-setup.md): How to setup CDC MariaDB
- [CDC - MongoDB Setup Documentation](https://docs.peaka.com/cdc-setup/cdc-mongodb-setup.md): How to setup CDC MongoDB
- [CDC - MySQL Setup Documentation](https://docs.peaka.com/cdc-setup/cdc-mysql-setup.md): How to setup CDC MySQL
- [CDC - Oracle Setup Documentation](https://docs.peaka.com/cdc-setup/cdc-oracle-setup.md): How to setup CDC Oracle
- [CDC - PostgreSQL Setup Documentation](https://docs.peaka.com/cdc-setup/cdc-postgresql-setup.md): How to setup CDC PostgreSQL
- [Connecting data using a SaaS connector](https://docs.peaka.com/connecting-your-data/add-connection.md): Learn how you can connect your data using a SaaS connector
- [Creating a Peaka Table](https://docs.peaka.com/connecting-your-data/creating-peaka-table.md): Learn how you can create your first internal table in Peaka
- [Creating a Peaka Query](https://docs.peaka.com/connecting-your-data/creating-query.md): Learn how you can create your first query in Peaka
- [Differences of Peaka Table and Peaka BI Table](https://docs.peaka.com/connecting-your-data/differences-of-peaka-table-and-peaka-bi-table.md): Learn about the differences between Peaka Table and Peaka BI Table
- [What is a Peaka BI Table?](https://docs.peaka.com/connecting-your-data/peaka-bi-table.md): Learn about Peaka BI Table and how you can use it to manage your data
- [What is a Peaka Query?](https://docs.peaka.com/connecting-your-data/peaka-query.md): Learn about Peaka Queries and how you can harness their power
- [What is a Peaka Table?](https://docs.peaka.com/connecting-your-data/peaka-table.md): Learn about Peaka Tables and how you can use them to manage your data
- [What are catalogs, schemas, and virtual tables?](https://docs.peaka.com/connecting-your-data/what-is-catalog-schema-virtual-table.md): Learn about 3 basic concepts for organizing your data in Peaka
- [What is a Materialized Query?](https://docs.peaka.com/connecting-your-data/what-is-materialized-query.md): Learn about Peaka Materialized Queries and how you can harness their power
- [What are semantic catalogs?](https://docs.peaka.com/connecting-your-data/what-is-semantic-catalogs.md): Learn how to create, share, and use semantic catalogs to simplify data models and enable AI-ready datasets in Peaka
- [JDBC Driver](https://docs.peaka.com/db-drivers/java.md): Welcome to the documentation for the Peaka JDBC Driver – your gateway to seamless integration with the powerful Peaka data platform. This JDBC driver serves as a bridge between your Java application and the Peaka platform, enabling you to retrieve and manipulate data with ease and efficiency. Let's…
- [NodeJS Driver](https://docs.peaka.com/db-drivers/nodejs.md): Discover the [Peaka](https://peaka.com/) NodeJS driver
- [Python Driver](https://docs.peaka.com/db-drivers/python.md): Discover the [Peaka](https://peaka.com/) python driver
- [Peaka as a Data Management Backend](https://docs.peaka.com/embedded-peaka/data-management-backend.md)
- [Peaka as a Data Management Tool with UI](https://docs.peaka.com/embedded-peaka/data-management-tool-with-ui.md)
- [Peaka as a Data Source](https://docs.peaka.com/embedded-peaka/data-source.md)
- [What is Embedded Peaka?](https://docs.peaka.com/embedded-peaka/introduction.md)
- [How to make use of Connections in Peaka](https://docs.peaka.com/flows/connections.md): Learn about 'Connections' in Peaka and how they allow you to work with various actions and data in your workflows
- [How to create a flow in Peaka](https://docs.peaka.com/flows/how-to-create-a-flow.md): Learn how you can create different types of flows in Peaka
- [How to make use of the HTTP Request node in Peaka](https://docs.peaka.com/flows/http-request.md): Learn about the HTTP Request node in Peaka and how you can use it to make HTTP requests and handle response
- [How to make use of loops in Peaka](https://docs.peaka.com/flows/loops.md): Learn about different types of loops in Peaka and how they can enhance your workflows
- [How to implement reusable flows in Peaka](https://docs.peaka.com/flows/reusable-flows.md): Learn what reusable flows are and how to implement them in your Peaka workflows
- [How to make use of the 'Set Flow Variable' node in Peaka](https://docs.peaka.com/flows/set-flow-variable.md): Learn about the 'Set Flow Variable' node in Peaka and how to use it to create variables within a specific flow
- [How to make use of the 'Success' and 'Fail' nodes in Peaka](https://docs.peaka.com/flows/success-fail.md): Learn about the 'Success' and 'Fail' nodes in Peaka, which are used to manage the flow and handle success or failure scenarios
- [How to make use of the 'Switch / Case' node in Peaka](https://docs.peaka.com/flows/switch-case.md): Learn about the 'Switch / Case' node in Peaka, which allows you to create conditional logic in your workflows
- [The concept of 'Output' and how to make use of it in Peaka](https://docs.peaka.com/flows/what-is-output-and-how-to-use-it.md): Learn about the concept of output and how to make use of flow components in Peaka
- [How to change the name of a flow](https://docs.peaka.com/how-to-guides/how-to-change-flow-name.md): Learn how you can easily change the name of your flow in Peaka
- [How to join connector data with Peaka Table data](https://docs.peaka.com/how-to-guides/how-to-combine-connector-and-peaka-table-data.md): Learn how you can combine connector data with Peaka Table data and utilize the result in your Peaka application
- [How to connect databases in AWS using IAM credentials](https://docs.peaka.com/how-to-guides/how-to-connect-databases-in-aws-using-iam-credentials.md): Learn how you can connect databases in AWS using IAM credentials
- [How to create OAuth2 based connections via Peaka API?](https://docs.peaka.com/how-to-guides/how-to-create-oauth2-based-connections-via-peaka.md): Learn how to create OAuth2 based connections via Peaka API.
- [How to create Peaka REST API catalog with authentication](https://docs.peaka.com/how-to-guides/how-to-create-peaka-rest-api-catalog-with-authentication.md): Learn how you can create Peaka REST API catalog with authentication
- [How to customize Embedded Peaka UI](https://docs.peaka.com/how-to-guides/how-to-customize-embedded-ui-style.md): Learn how you can update the Peaka's UI according to your application
- [How to filter your data with a visual filter](https://docs.peaka.com/how-to-guides/how-to-filter-your-data-with-visual-filter.md): Learn how you can effectively filter your data using visual filters in Peaka
- [How to generate API Key for your project](https://docs.peaka.com/how-to-guides/how-to-generate-api-keys.md): Learn how you can generate API Keys in your projects.
- [How to Manage Your Partner API Key](https://docs.peaka.com/how-to-guides/how-to-manage-partner-api-key.md): This guide explains how to create, manage, and update Partner API Keys in Peaka.
- [How to use new AI API](https://docs.peaka.com/how-to-guides/how-to-use-new-ai-api-api.md): This guide explains on how to use new ai agent API of Peaka
- [ActiveCampaign](https://docs.peaka.com/integrations/activecampaign.md): Discover a seamless integration process! Learn how to connect ActiveCampaign to Peaka effortlessly for streamlined transactions.
- [Airtable](https://docs.peaka.com/integrations/airtable.md): Discover a seamless integration process! Learn how to connect Airtable to Peaka effortlessly for streamlined transactions.
- [Amazon Athena](https://docs.peaka.com/integrations/amazon-athena.md): Discover a seamless integration process! Learn how to connect Amazon Athena to Peaka effortlessly for streamlined transactions.
- [Amazon RDS](https://docs.peaka.com/integrations/amazon-rds.md): Discover a seamless integration process! Learn how to connect Amazon RDS to Peaka effortlessly for streamlined transactions.
- [Amazon Redshift](https://docs.peaka.com/integrations/amazon-redshift.md): Discover a seamless integration process! Learn how to connect Amazon Redshift to Peaka effortlessly for streamlined transactions.
- [BigQuery](https://docs.peaka.com/integrations/big-query.md): Discover a seamless integration process! Learn how to connect BigQuery to Peaka effortlessly for streamlined transactions.
- [Clickhouse](https://docs.peaka.com/integrations/clickhouse.md): Discover a seamless integration process! Learn how to connect Clickhouse to Peaka effortlessly for streamlined transactions.
- [Databricks](https://docs.peaka.com/integrations/databricks.md): Discover a seamless integration process! Learn how to connect Databricks to Peaka effortlessly for streamlined transactions.
- [Dynamics 365](https://docs.peaka.com/integrations/dynamics-365.md): Discover a seamless integration process! Learn how to connect Dynamics 365 to Peaka effortlessly for streamlined transactions.
- [ElasticSearch](https://docs.peaka.com/integrations/elastic-search.md): Discover a seamless integration process! Learn how to connect ElasticSearch to Peaka effortlessly for streamlined transactions.
- [Excel 365](https://docs.peaka.com/integrations/excel-365.md): Discover a seamless integration process! Learn how to connect Excel 365 to Peaka effortlessly for streamlined transactions.
- [Facebook Ads](https://docs.peaka.com/integrations/facebook-ads.md): Discover a seamless integration process! Learn how to connect Facebook Ads to Peaka effortlessly for streamlined transactions.
- [Firebase](https://docs.peaka.com/integrations/firebase.md): Discover a seamless integration process! Learn how to connect Firebase to Peaka effortlessly for streamlined transactions.
- [Freshdesk](https://docs.peaka.com/integrations/freshdesk.md): Discover a seamless integration process! Learn how to connect Freshdesk to Peaka effortlessly for streamlined transactions.
- [Github](https://docs.peaka.com/integrations/github.md): Discover a seamless integration process! Learn how to connect Github to Peaka effortlessly for streamlined transactions.
- [Google Ads](https://docs.peaka.com/integrations/google-ads.md): Discover a seamless integration process! Learn how to connect Google Ads to Peaka effortlessly for streamlined transactions.
- [Google Analytics](https://docs.peaka.com/integrations/google-analytics.md): Discover a seamless integration process! Learn how to connect Google Analytics to Peaka effortlessly for streamlined transactions.
- [Google Sheets](https://docs.peaka.com/integrations/google-sheets.md): Discover a seamless integration process! Learn how to connect Google Sheets to Peaka effortlessly for streamlined transactions.
- [Gorgias](https://docs.peaka.com/integrations/gorgias.md): Discover a seamless integration process! Learn how to connect Gorgias to Peaka effortlessly for streamlined transactions.
- [HubSpot](https://docs.peaka.com/integrations/hubspot.md): Discover a seamless integration process! Learn how to connect HubSpot to Peaka effortlessly for streamlined transactions.
- [Instagram](https://docs.peaka.com/integrations/instagram.md): Discover a seamless integration process! Learn how to connect Instagram to Peaka effortlessly for streamlined transactions.
- [Intercom](https://docs.peaka.com/integrations/intercom.md): Discover a seamless integration process! Learn how to connect Intercom to Peaka effortlessly for streamlined transactions.
- [JIRA Cloud](https://docs.peaka.com/integrations/jira.md): Discover a seamless integration process! Learn how to connect Jira to Peaka effortlessly for streamlined transactions.
- [JIRA Service Management](https://docs.peaka.com/integrations/jira-service-management.md): Discover a seamless integration process! Learn how to connect JIRA Service Management to Peaka effortlessly for streamlined transactions.
- [Klaviyo](https://docs.peaka.com/integrations/klaviyo.md): Discover a seamless integration process! Learn how to connect Klaviyo to Peaka effortlessly for streamlined transactions.
- [LinkedIn Ads](https://docs.peaka.com/integrations/linkedin-ads.md): Discover a seamless integration process! Learn how to connect LinkedIn Ads to Peaka effortlessly for streamlined transactions.
- [Mailchimp Marketing](https://docs.peaka.com/integrations/mailchimp-marketing.md): Discover a seamless integration process! Learn how to connect Mailchimp Marketing to Peaka effortlessly for streamlined transactions.
- [Mailchimp Transactional](https://docs.peaka.com/integrations/mailchimp-transactional.md): Discover a seamless integration process! Learn how to connect Mailchimp Transactional to Peaka effortlessly for streamlined transactions.
- [MariaDB](https://docs.peaka.com/integrations/mariadb.md): Discover a seamless integration process! Learn how to connect MariaDB to Peaka effortlessly for streamlined transactions.
- [Mixpanel](https://docs.peaka.com/integrations/mixpanel.md): Discover a seamless integration process! Learn how to connect Mixpanel to Peaka effortlessly for streamlined transactions.
- [MongoDB](https://docs.peaka.com/integrations/mongodb.md): Discover a seamless integration process! Learn how to connect MongoDB to Peaka effortlessly for streamlined transactions.
- [MSSQL](https://docs.peaka.com/integrations/mssql.md): Discover a seamless integration process! Learn how to connect MSSQL to Peaka effortlessly for streamlined transactions.
- [MySQL](https://docs.peaka.com/integrations/mysql.md): Discover a seamless integration process! Learn how to connect MySQL to Peaka effortlessly for streamlined transactions.
- [Neo4J](https://docs.peaka.com/integrations/neo4j.md): Discover a seamless integration process! Learn how to connect Neo4J to Peaka effortlessly for streamlined transactions.
- [Odoo](https://docs.peaka.com/integrations/odoo.md): Discover a seamless integration process! Learn how to connect Odoo to Peaka effortlessly for streamlined transactions.
- [OpenAI](https://docs.peaka.com/integrations/openai.md): Discover a seamless integration process! Learn how to connect OpenAI to Peaka effortlessly for streamlined transactions.
- [Oracle](https://docs.peaka.com/integrations/oracle.md): Discover a seamless integration process! Learn how to connect Oracle to Peaka effortlessly for streamlined transactions.
- [Pinecone](https://docs.peaka.com/integrations/pinecone.md): Discover a seamless integration process! Learn how to connect Pinecone to Peaka effortlessly for streamlined transactions.
- [Pipedrive](https://docs.peaka.com/integrations/pipedrive.md): Discover a seamless integration process! Learn how to connect Pipedrive to Peaka effortlessly for streamlined transactions.
- [PostgreSQL](https://docs.peaka.com/integrations/postgresql.md): Discover a seamless integration process! Learn how to connect PostgreSQL to Peaka effortlessly for streamlined transactions.
- [PostHog](https://docs.peaka.com/integrations/posthog.md): Discover a seamless integration process! Learn how to connect PostHog to Peaka effortlessly for streamlined transactions.
- [ProfitWell](https://docs.peaka.com/integrations/profitwell.md): Discover a seamless integration process! Learn how to connect ProfitWell to Peaka effortlessly for streamlined transactions.
- [Provet Cloud](https://docs.peaka.com/integrations/provet-cloud.md): Discover a seamless integration process! Learn how to connect Provet Cloud to Peaka effortlessly for streamlined transactions.
- [Qdrant](https://docs.peaka.com/integrations/qdrant.md): Discover a seamless integration process! Learn how to connect Qdrant to Peaka effortlessly for streamlined transactions.
- [Quickbooks Online](https://docs.peaka.com/integrations/quickbooks-online.md): Discover a seamless integration process! Learn how to connect Quickbooks Online to Peaka effortlessly for streamlined transactions.
- [Salesforce](https://docs.peaka.com/integrations/salesforce.md): Discover a seamless integration process! Learn how to connect Salesforce to Peaka effortlessly for streamlined transactions.
- [SAP HANA](https://docs.peaka.com/integrations/sap-hana.md): Discover a seamless integration process! Learn how to connect SAP HANA to Peaka effortlessly for streamlined transactions.
- [Segment](https://docs.peaka.com/integrations/segment.md): Discover a seamless integration process! Learn how to connect Segment to Peaka effortlessly for streamlined transactions.
- [SendGrid](https://docs.peaka.com/integrations/sendgrid.md): Discover a seamless integration process! Learn how to connect SendGrid to Peaka effortlessly for streamlined transactions.
- [ServiceTitan](https://docs.peaka.com/integrations/service-titan.md): This guide explains how to connect your ServiceTitan account to Peaka in order to access and analyze your ServiceTitan data within the Peaka platform.
- [Shopify](https://docs.peaka.com/integrations/shopify.md): Discover a seamless integration process! Learn how to connect Shopify to Peaka effortlessly for streamlined transactions.
- [SingleStore](https://docs.peaka.com/integrations/single-store.md): Discover a seamless integration process! Learn how to connect SingleStore to Peaka effortlessly for streamlined transactions.
- [Slack](https://docs.peaka.com/integrations/slack.md): Discover a seamless integration process! Learn how to connect Slack to Peaka effortlessly for streamlined transactions.
- [Snowflake](https://docs.peaka.com/integrations/snowflake.md): Discover a seamless integration process! Learn how to connect Snowflake to Peaka effortlessly for streamlined transactions.
- [Stripe](https://docs.peaka.com/integrations/stripe.md): Discover a seamless integration process! Learn how to connect Stripe to Peaka effortlessly for streamlined transactions.
- [Twilio](https://docs.peaka.com/integrations/twilio.md): Discover a seamless integration process! Learn how to connect Twilio to Peaka effortlessly for streamlined transactions.
- [Upstash Vector](https://docs.peaka.com/integrations/upstash-vector.md): Discover a seamless integration process! Learn how to connect Upstash Vector to Peaka effortlessly for streamlined transactions.
- [Weaviate](https://docs.peaka.com/integrations/weaviate.md): Discover a seamless integration process! Learn how to connect Weaviate to Peaka effortlessly for streamlined transactions.
- [Xero Accounting](https://docs.peaka.com/integrations/xero-accounting.md): Discover a seamless integration process! Learn how to connect Xero Accounting to Peaka effortlessly for streamlined transactions.
- [Youtube Analytics](https://docs.peaka.com/integrations/youtube-analytics.md): Discover a seamless integration process! Learn how to connect Youtube Analytics to Peaka effortlessly for streamlined transactions.
- [Zendesk](https://docs.peaka.com/integrations/zendesk.md): Discover a seamless integration process! Learn how to connect Zendesk to Peaka effortlessly for streamlined transactions.
- [Zoho CRM](https://docs.peaka.com/integrations/zoho-crm.md): Discover a seamless integration process! Learn how to connect Zoho CRM to Peaka effortlessly for streamlined transactions.
- [Zoom](https://docs.peaka.com/integrations/zoom.md): Discover a seamless integration process! Learn how to connect Zoom to Peaka effortlessly for streamlined transactions.
- [Welcome to Peaka Documentation](https://docs.peaka.com/introduction.md)
- [How to implement advanced JEXL functions in Peaka](https://docs.peaka.com/jexl/advanced-jexl.md): Click here for an overview of the advanced functions in JEXL
- [How to implement Peaka functions in JEXL](https://docs.peaka.com/jexl/built-in-functions.md): Click here for an introduction to using Peaka functions in JEXL
- [Most-used Lodash functions in Peaka](https://docs.peaka.com/jexl/lodash-functions.md): Learn more about the most-used lodash functions in Peaka
- [How to use JEXL in Peaka](https://docs.peaka.com/jexl/using-jexl.md): Click here to see a detailed description of how to use JEXL in Peaka
- [Create Organization](https://docs.peaka.com/organization-operations/create-organization.md): Learn how to create an organization in Peaka.
- [Delete Organization](https://docs.peaka.com/organization-operations/delete-organization.md): Learn how to delete an organization in Peaka.
- [Manage Organization Groups](https://docs.peaka.com/organization-operations/manage-organization-groups.md): Learn how to manage organization groups in Peaka.
- [Manage Organization Members](https://docs.peaka.com/organization-operations/manage-organization-members.md): Learn how to manage organization members in Peaka.
- [Update Organization](https://docs.peaka.com/organization-operations/update-organization.md): Learn how to update an organization in Peaka.
- [How to clone a project in Peaka](https://docs.peaka.com/project-operations/clone-a-project.md): Get started with Project Operations: Learn how you can clone an existing project in Peaka.
- [How to delete a project in Peaka](https://docs.peaka.com/project-operations/delete-a-project.md): Get started with Project Operations: Learn how you can delete a project in Peaka.
- [How to create a project](https://docs.peaka.com/project-operations/how-to-create-a-project.md): Get started with Project Operations: Learn how you can start a new project in Peaka.
- [Manage Members](https://docs.peaka.com/project-operations/manage-members.md): Learn how to manage project members in Peaka.
- [How to rename a project in Peaka](https://docs.peaka.com/project-operations/rename-a-project.md): Get started with Project Operations: Learn how you can change the name of your Peaka project.
- [Aggregate functions](https://docs.peaka.com/sql/functions/aggregate.md)
- [Array functions and operators](https://docs.peaka.com/sql/functions/array.md)
- [Binary functions and operators](https://docs.peaka.com/sql/functions/binary.md)
- [Bitwise functions](https://docs.peaka.com/sql/functions/bitwise.md)
- [Comparison functions and operators](https://docs.peaka.com/sql/functions/comparison.md)
- [Conditional Expressions](https://docs.peaka.com/sql/functions/conditional.md)
- [Conversion](https://docs.peaka.com/sql/functions/conversion.md)
- [Date and time functions and operators](https://docs.peaka.com/sql/functions/datetime.md)
- [Decimal functions and operators](https://docs.peaka.com/sql/functions/decimal.md)
- [HyperLogLog Functions](https://docs.peaka.com/sql/functions/hyperloglog.md)
- [JSON functions and operators](https://docs.peaka.com/sql/functions/json.md)
- [Lambda expressions](https://docs.peaka.com/sql/functions/lambda.md)
- [Map](https://docs.peaka.com/sql/functions/map.md)
- [Machine learning functions](https://docs.peaka.com/sql/functions/ml.md)
- [Quantile digest functions](https://docs.peaka.com/sql/functions/qdigest.md)
- [Regexp](https://docs.peaka.com/sql/functions/regexp.md)
- [Set Digest functions](https://docs.peaka.com/sql/functions/setdigest.md)
- [String functions and operators](https://docs.peaka.com/sql/functions/string.md)
- [Table functions](https://docs.peaka.com/sql/functions/table.md)
- [Teradata functions](https://docs.peaka.com/sql/functions/teradata.md)
- [URL functions](https://docs.peaka.com/sql/functions/url.md)
- [UUID Functions](https://docs.peaka.com/sql/functions/uuid.md)
- [Window functions](https://docs.peaka.com/sql/functions/window.md)
- [Introduction](https://docs.peaka.com/sql/introduction.md): Introduction to how to use SQL with Peaka.
- [DESCRIBE](https://docs.peaka.com/sql/reference/describe.md)
- [EXECUTE](https://docs.peaka.com/sql/reference/execute.md)
- [PREPARE](https://docs.peaka.com/sql/reference/prepare.md)
- [SELECT](https://docs.peaka.com/sql/reference/select.md)
- [SHOW CATALOGS](https://docs.peaka.com/sql/reference/show-catalogs.md)
- [SHOW COLUMNS](https://docs.peaka.com/sql/reference/show-columns.md)
- [SHOW SCHEMAS](https://docs.peaka.com/sql/reference/show-schemas.md)
- [Data types](https://docs.peaka.com/sql/reference/types.md)
- [USE](https://docs.peaka.com/sql/reference/use.md)
- [VALUES](https://docs.peaka.com/sql/reference/values.md)
- [BEGIN](https://docs.peaka.com/sql/routines/begin.md)
- [CASE](https://docs.peaka.com/sql/routines/case.md)
- [DECLARE](https://docs.peaka.com/sql/routines/declare.md)
- [Example SQL routines](https://docs.peaka.com/sql/routines/examples.md)
- [FUNCTION](https://docs.peaka.com/sql/routines/function.md)
- [IF](https://docs.peaka.com/sql/routines/if.md)
- [Introduction to SQL routines](https://docs.peaka.com/sql/routines/introduction.md)
- [ITERATE](https://docs.peaka.com/sql/routines/iterate.md)
- [LEAVE](https://docs.peaka.com/sql/routines/leave.md)
- [LOOP](https://docs.peaka.com/sql/routines/loop.md)
- [REPEAT](https://docs.peaka.com/sql/routines/repeat.md)
- [RETURN](https://docs.peaka.com/sql/routines/return.md)
- [SET](https://docs.peaka.com/sql/routines/set.md)
- [WHILE](https://docs.peaka.com/sql/routines/while.md)
## OpenAPI Specs
- [peaka-openapi](https://docs.peaka.com/api-reference/peaka-openapi.json)
- [openapi](https://docs.peaka.com/api-reference/openapi.json)
## Optional
- [Documentation](https://docs.peaka.com)
- [Community](https://www.peaka.com/community)
- [Blog](https://www.peaka.com/blog)