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 keyasync function main() { const client = new Raindrop({ apiKey: process.env['RAINDROP_API_KEY'] });}
main();
Python
from raindrop import Raindropimport os
# create a new raindrop client with your API keyclient = 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 keyfunc 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:
raindrop auth login