# LS3 with load\_acc

{% hint style="info" %}
As of October 1st, 2025, it's no longer required to directly contact us to acquire Load S3 access keys to interact with the LS3's `drive.load.network` HyperBEAM cluster. Interacting with the Load S3 storage layer now has programmatic access with `load_acc` access keys and a new cluster endpoint: `https://api.load.network/s3`
{% endhint %}

### How to get load\_acc API keys

First, you have to create a bucket from the cloud.load.network dashboard if the bucket you want to create scoped keys for does not already exist.

<figure><img src="/files/RHUDRezSAm7G6S9wnkT8" alt=""><figcaption></figcaption></figure>

After creating the bucket, navigate to the "API Keys" tab and create a new load\_acc key with a label, then scope it to the desired bucket.

<figure><img src="/files/WvnKQDfaVjfnhjSSEUIV" alt=""><figcaption></figcaption></figure>

### load\_acc in action

After creating a bucket and load\_acc API key, you can now interact with the Load S3 storage layer via S3-compatible SDKs, such as the official AWS S3 SDK. Here is the S3 client configuration as it should be:

```javascript
import { S3Client } from "@aws-sdk/client-s3";


const endpoint = "https://api.load.network/s3"; // LS3 HyperBEAM cluster 
const accessKeyId = "load_acc_YOUR_LCP_ACCESS_KEY"; // get yours from cloud.load.network
const secretAccessKey = ""; 

// Initialize the S3 client
const s3Client = new S3Client({
  region: "us-east-2",
  endpoint,
  credentials: {
    accessKeyId,
    secretAccessKey,
  },
  forcePathStyle: true, // required
});
```

And that's it, that's all you need to start interacting with your HyperBEAM-powered S3 temporary storage!


---

# Agent Instructions: 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.load.network/load-cloud-platform-lcp/ls3-with-load_acc.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.
