API Reference
Build powerful automations with Loomu REST APIs and SDKs. This quick reference covers the most common endpoints, authentication steps, rate limits, and tooling.
Authentication
All API calls must be authenticated with a bearer token. Never hard-code keys in client-side code.
Create an API key in the Loomu dashboard.
Send requests to https://api.loomu.ai with HTTPS only.
Include the Authorization header: Bearer YOUR_API_KEY.
Handle 401/429 responses by rotating keys or retrying with backoff.
Key endpoints
POST/api/v1/chat/completions
Create a chat completion
Status: Stable
GET/api/v1/models
List available models
Status: Stable
POST/api/v1/projects
Create a new project
Status: Beta
GET/api/v1/projects
Fetch projects
Status: Stable
POST/api/v1/connectors/config
Configure connectors
Status: Beta
Official SDKs
JavaScript
npm install @Loomu/sdk
Python
pip install Loomu-sdk
Go
go get github.com/Loomu/go-sdk
Rate limits
Free tier calls: 1,000 requests / minute, 10,000 requests / hour, 100,000 requests / day. Contact support if you need higher throughput.