> For the complete documentation index, see [llms.txt](https://docs.bloxroute.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bloxroute.com/solana/trader-api/quick-start/rust-sdk.md).

# Rust SDK

### Objective

This SDK is designed to make it easy for you to use the bloXroute Labs API in Rust.

Source:

{% embed url="<https://github.com/bloXroute-Labs/solana-trader-client-rust>" %}

{% embed url="<https://crates.io/crates/solana-trader-client-rust>" %}

### <https://crates.io/crates/solana-trader-client-rust> Installation

```
cargo add solana-trader-client-rust
```

or

```rust
[dependencies]
solana-trader-client-rust = "0.1.0"
```

### Usage

The SDK provides access to Solana Trader API through:

* gRPC: High-performance RPC calls
* HTTP: Simple REST requests
* WebSocket: Real-time streaming data

#### Client Initialization

Refer to **SETUP.md** for available networks, regions IDE setup and notes on testing.

Create and populate your `.env` file with something like this:

```rust
PUBLIC_KEY="...."
PRIVATE_KEY="......."
AUTH_HEADER="......"
NETWORK=MAINNET
REGION=NY
```

Please refer to the `tests` directory for more examples.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bloxroute.com/solana/trader-api/quick-start/rust-sdk.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
