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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/firebolt-core/firebolt-core-connect/firebolt-core-connect-go",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Connect With Go

The [official Firebolt Go SDK driver](https://github.com/firebolt-db/firebolt-go-sdk) supports Firebolt Core from version 1.10.0 and can be downloaded from the [GitHub Go SDK release page](https://github.com/firebolt-db/firebolt-go-sdk/releases). A detailed description can be found on the [Go SDK documentation page](/guides/developing-with-firebolt/connecting-with-go). The remainder of this page provides some explanations and examples specific to Firebolt Core.

## DSN Parameters

In order to connect to a Firebolt Core cluster with Go SDK, you need to specify the address of the HTTP endpoint in the `url` connection parameter. For example, if you followed the [Get Started](/firebolt-core/firebolt-core-get-started) guide to start a single-node Firebolt Core cluster on your local machine, its HTTP endpoint is exposed at `localhost:3473` and you can use the following connection string to connect to the default database.

```
firebolt://?url=http://localhost:3473
```

More generally, the form of the connection string should be as follows.

```
firebolt://[/<database>]?url=<http_endpoint_url>
```

Recall that Firebolt Core [does not support authentication](/firebolt-core/firebolt-core-connect#security), so the respective instructions outlined in the dedicated [Go SDK documentation page](/guides/developing-with-firebolt/connecting-with-go#connect-to-firebolt) do not apply.
