> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ralphstudio.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK Overview

> Official SDKs for interacting with Ralph Studio and Alephium  coming soon.

<Warning>
  The Ralph Studio SDKs are currently in development.
</Warning>

Ralph Studio will ship official SDK wrappers around the RPC, Indexer, and Smart Contract APIs for the most common languages. Each SDK handles authentication, request building, error handling, and response parsing so you can focus on your application logic.

## Planned SDKs

<CardGroup cols={2}>
  <Card title="JavaScript / TypeScript" icon="js" href="/sdk/javascript">
    For Node.js backends and browser dApps
  </Card>

  <Card title="Python" icon="python" href="/sdk/python">
    For data pipelines, bots, and backend services
  </Card>

  <Card title="Rust" icon="gear" href="/sdk/rust">
    For high-performance applications and system tools
  </Card>
</CardGroup>

## What the SDKs will include

* **Authentication**: API key injection, no manual header management
* **Typed responses**: full TypeScript types and Python dataclasses for every endpoint
* **Automatic retries**: built-in exponential backoff for 500 and 503 errors
* **Rate limit handling**: reads `X-RateLimit-*` headers and backs off automatically
* **Amount helpers**: convert between attoALPH and ALPH without manual math
* **Pagination helpers**: iterate through paginated results with a single function call

## Using the API directly in the meantime

All Ralph Studio functionality is available via the HTTP API right now. The SDK is a convenience layer everything it will do is already doable with `curl` or `fetch`.

Start with the [quickstart guide](/quickstart) to make your first request, then browse the [RPC API](/rpc-api/overview) and [Indexer API](/indexer-api/overview) references for the full endpoint list.

## Get notified

To get notified when the SDKs launch join the Ralph Studio Discord or watch the GitHub repository.
