Quick Start
Create your first prompt in minutes
1. Create an Account
Sign up for a free account at echostash.com. No credit card required for the free tier.
2. Create Your First Prompt
Navigate to your dashboard and click “New Prompt”. Give your prompt a name and start writing.
3. Get Your API Key
Go to Settings → API Keys and create a new key. Keep this secure!
4. Install the SDK
npm install @echostash/sdk
# or
yarn add @echostash/sdk5. Fetch Your Prompt
import { EchostashClient } from "@echostash/sdk"
const client = new EchostashClient({
apiKey: process.env.ECHOSTASH_API_KEY
})
const prompt = await client.getPrompt("my-prompt")
console.log(prompt.content)