Skip to main content
GET
List access keys

gRPC method: ListAccessKeyInfo

Returns metadata for every access key in the caller’s organization. Secret keys are never returned by this endpoint. Use offset and limit (1–1000) for pagination, and optionally filter by status (ACCESS_KEY_STATUS_ACTIVE); leaving status unset returns keys of every status.
Example request

Authorizations

Authorization
string
header
default:Bearer {API_ACCESS_TOKEN}
required

CoreWeave API access token sent as a bearer token in the Authorization header (the value is prefixed with Bearer). Used by every operation except the SAML/OIDC token-exchange endpoints (anonymous) and the container credentials GET (which uses ContainerCredentialsAuth).

Query Parameters

offset
integer<uint32>

Zero-based offset into the result set. Used with limit for pagination.

limit
integer<uint32>

Page size. Must be 1–1000.

Required range: 1 <= x <= 1000
status
enum<string>

Optional access-key status filter. When unset, access keys of every status are returned. Set to ACCESS_KEY_STATUS_ACTIVE to return only active keys.

Available options:
ACCESS_KEY_STATUS_ACTIVE,
ACCESS_KEY_STATUS_SUSPENDED

Response

OK

A page of access-key metadata for the caller's organization.

info
object[]

The list of access-key metadata records.

Last modified on July 13, 2026