Getting Started
Quick Start
Get up and running with CodeStreem APIs in under 60 seconds.
#
1. Get Your API Key
Sign up for a free account at [dashboard.codestreem.io](https://codestreem-ai.vercel.app/dashboard) to get your API key.
#
2. Install SDK (Optional)
# Node.js / JavaScript
npm install @codestreem/sdk# Python
pip install codestreem
# Go
go get github.com/codestreem/go-sdk
# Ruby
gem install codestreem
#
3. Make Your First Request
Every API request requires authentication via the Authorization header:
curl -X POST "https://api.codestreem.io/v1/sentiment" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Hello, World!"}'