Skip to main content
This guide takes you from credentials to a running FalkorDB instance using the API.

Prerequisites

Before you begin, you need:

Get started

1

Sign in

Sign in with your FalkorDB Cloud email and password. The response sets the omnistrate_token session cookie that authorizes every other request, so store it in a cookie jar.
The cookies are scoped to .falkordb.cloud, so curl does not replay them to https://api.omnistrate.cloud. Read the token out of the cookie jar and send it as an explicit Cookie header on the requests below.
See Sign in for the full reference. The session lasts 1 hour.
2

Create an instance

Send a create request to the endpoint for your service tier and deployment component, passing the session token. This example creates a Free instance.
3

Wait until it is running

Instances are provisioned asynchronously. Poll the describe endpoint until status is RUNNING.
The result_params object contains the hostname and port you connect to.
4

Connect

Use the returned endpoint with any FalkorDB client.
Never hardcode credentials in scripts or commit them to source control. Read them from environment variables or a secret manager, and keep cookies.txt out of version control.

Next steps

Need help? Reach out at contact@falkordb.com.