You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Get started with REST API Endpoints in LocalStack for Snowflake
5
+
tags: ["Base"]
6
+
---
7
+
8
+
## Introduction
9
+
10
+
The [Snowflake REST API](https://docs.snowflake.com/en/developer-guide/snowflake-rest-api/snowflake-rest-api) provides REST API endpoints that allow you to manage schemas and tables in Snowflake. Snowflake REST APIs let you use the programming language of your choice to build your integrations.
11
+
12
+
LocalStack for Snowflake supports REST API endpoints that let you manage your Snowflake data locally.
13
+
14
+
## Supported Snowflake REST API endpoints
15
+
16
+
LocalStack for Snowflake supports the following REST API endpoints to manage your Snowflake data locally:
17
+
18
+
19
+
| Supported Endpoint | Description |
20
+
|--------------------|-------------|
21
+
|`GET /api/v2/databases`| Lists databases. |
22
+
|`POST /api/v2/databases`| Creates a database. |
23
+
|`GET /api/v2/databases/<name>`| Fetches a database. |
24
+
|`PUT /api/v2/databases/<name>`| Creates a new, or alters an existing, database. |
0 commit comments