Skip to content

Authentication

The Raindrop SDK uses API keys for authentication. You can obtain an API key from the Raindrop Dashboard.

Configuring Your API Key

JavaScript/TypeScript

import Raindrop from 'raindrop';
import process from 'process';
// create a new raindrop client with your API key
async function main() {
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY']
});
}
main();

Python

from raindrop import Raindrop
import os
# create a new raindrop client with your API key
client = Raindrop(
api_key=os.environ.get("RAINDROP_API_KEY")
)

Go

package main
import (
"context"
"os"
"github.com/stainless-sdks/liquidmetal-ai-go"
"github.com/stainless-sdks/liquidmetal-ai-go/option"
)
// create a new raindrop client with your API key
func main() {
client := raindrop.NewClient(
option.WithAPIKey(os.Getenv("RAINDROP_API_KEY"))
)
}

CLI

Run the following command in your terminal to authenticate your Raindrop CLI. This will open a browser window where you can complete the authentication process:

Terminal window
raindrop auth login