Skip to main content
Docs

Retrieves a specific API key by its ID. Returns an APIKey object.

function get(apiKeyId: string): Promise<APIKeyResource>
  • Name
    apiKeyId
    Type
    string
    Description

    The ID of the API key to retrieve.

Note

Using clerkClient varies based on the SDK you're using. Refer to the overview for usage details, including guidance on how to access the userId and other properties.

const apiKeyId = 'apikey_123'

const response = await clerkClient.apiKeys.get(apiKeyId)

Backend API (BAPI) endpoint

This method in the SDK is a wrapper around the BAPI endpoint GET/api_keys/{apiKeyId}. See the BAPI reference for more information.

Feedback

What did you think of this content?

Last updated on