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

# API Client Libraries

> Access the Riza API from Python, Node.js or Go

We offer API libraries for Python, Node.js and Go, with more on the way.  These
libraries are generated and built using
[Stainless](https://www.stainlessapi.com/). Check them out!

<CardGroup cols={3}>
  <Card title="riza-api-python" icon="python" href="https://github.com/riza-io/riza-api-python">
    Access the Riza API from any Python 3.7+ application.
  </Card>

  <Card title="riza-api-node" icon="node" href="https://github.com/riza-io/riza-api-node">
    Access the Riza API from server-side TypeScript or JavaScript.
  </Card>

  <Card title="riza-api-go" icon="golang" href="https://github.com/riza-io/riza-api-go">
    Access the Riza API from Go.
  </Card>
</CardGroup>

Libraries are available from the typical package repositories.

<CodeGroup>
  ```bash pip theme={null}
  $ pip install rizaio
  ```

  ```bash npm theme={null}
  $ npm install @riza-io/api
  ```

  ```bash go get theme={null}
  $ go get github.com/riza-io/riza-api-go
  ```
</CodeGroup>
