You need access keys to call the Object Storage S3 endpoint and the Object Storage API. Access Keys created using Cloud Console tokens may be permanent or temporary. Permanent keys do not expire, while temporary keys are valid for a specified duration. Access Keys may be created in the CoreWeave Cloud Console or with the CoreWeave API.Documentation Index
Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt
Use this file to discover all available pages before exploring further.
Production workloads should use Workload Identity Federation instead of Cloud Console tokens. Workload Identity Federation provides a more secure, controlled way to generate time-limited Access Keys using SAML assertions.
Create Access Keys in the Cloud Console
You must be signed in as a user who has the Object Storage Admin IAM role (or equivalent legacy access, such as membership in theadmin group).
- In the Cloud Console, navigate to the Access Keys page.
- Click the Create Key button at the top right corner of the page.
- In the dialog:
- For a Temporary key, enter the desired duration in seconds and click Create.
- For a Permanent key, select Enable Permanent Key and click Create.

Create Access Keys with the API
To create Access Keys via the API, you must first create a JSON object that defines the key’s properties. The JSON object must include thedurationSeconds property, which specifies how long the key is valid.
Permanent keys
Permanent keys do not expire, and can be used indefinitely. To create a permanent access key, setdurationSeconds to 0 in a JSON object. The value of 0 in the example data.json indicates that the key does not expire.
data.json
/access-key endpoint with the JSON object in the body. Replace [API-ACCESS-TOKEN] with your API access token.
Example request
expiry field set to 1970-01-01T00:00:00Z, which indicates that the key does not expire.
Response status code 200
Temporary keys
Create temporary Access Keys by settingdurationSeconds to the desired duration in seconds. Temporary keys expire after the specified duration, which can be of any length.
To begin, create a JSON object that defines durationSeconds. The example below creates a key with a 300 second (5 minute) duration.
data.json
/access-key endpoint with the JSON object in the body. Replace [API-ACCESS-TOKEN] with your API access token.
Example request
expiry field is set to the time the key expires.
Response status code 200