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

# CyborgDB - Go SDK Reference

> `v0.17.x`

The **CyborgDB** Go SDK provides a strongly-typed interface for securely interacting with encrypted indexes. It supports all core operations including index creation, data insertion, and encrypted querying.

The package source code is available on [GitHub](https://github.com/cyborginc/cyborgdb-go).

## Installation

```bash theme={null}
go get github.com/cyborginc/cyborgdb-go
```

## Prerequisites

Before using the CyborgDB Go SDK, you need to have the CyborgDB service running:

```bash theme={null}
# Install the CyborgDB service
pip install cyborgdb-service

# Or pull the Docker image
docker pull cyborginc/cyborgdb-service

# Start the service
cyborgdb-service

# Or run the Docker container
docker run -p 8000:8000 cyborginc/cyborgdb-service
```

For detailed service setup instructions, see our quickstart guides for [Docker](../guides/intro/quickstart-docker) and [Python](../guides/intro/quickstart-python).
