SDKs

Luella’s API is still in its early beta (v0) stage. We’re actively gathering feedback and improving the platform, and as a result, we have not yet released any official SDKs.

Official SDKs for the following languages are planned:

  • JavaScript / TypeScript (Coming Soon)
  • Python (Coming Soon)
  • Go (Coming Soon)
  • Java (Coming Soon)
  • Ruby (Coming Soon)

Why there are no SDKs yet

We want to keep the API surface flexible and evolve rapidly based on user feedback. Once the endpoints stabilize and Luella exits beta, SDKs will be published with full support for:

  • Strong typing
  • Built-in retry logic
  • Request validation
  • Seamless integration with workspace-level settings

Workaround: Use any HTTP client

Since every Luella API endpoint is a simple POST request with a JSON body, you can integrate it today using your preferred HTTP library:

// Example using fetch in JavaScript
const res = await fetch("https://api.luella.ai/clusters/ListClusters", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    userId: "your_user_id",
    workspaceId: "your_workspace_id",
    maxItems: 5
  })
});

We’ll update this page as soon as SDKs are available. If you’d like to prioritize SDK support for a specific language, reach out to us.

Was this page helpful?