> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Key

> Retrieves detailed information about a specific cryptographic key including its complete configuration and key material.

## Endpoint

```
GET /apiops/projects/{projectName}/keys/{keyName}/
```

## Authentication

Requires a Personal API Access Token.

### Header

```
Authorization: Bearer YOUR_TOKEN
```

## Request

### Headers

| Header        | Value            | Required |
| ------------- | ---------------- | -------- |
| Authorization | Bearer `{token}` | Yes      |

### Path Parameters

| Parameter   | Type   | Required | Description     |
| ----------- | ------ | -------- | --------------- |
| projectName | string | Yes      | Project name    |
| keyName     | string | Yes      | Name of the key |

## Response

Same as [List Keys](/api-reference/keys-secrets/crud/list-keys) response format, but returns a single key.

## cURL Example

```bash theme={null}
curl -X GET \
  "https://demo.apinizer.com/apiops/projects/MyProject/keys/my-key/" \
  -H "Authorization: Bearer YOUR_TOKEN"
```

## Permissions

User must have **any permission** in the project (read access).

## Related Documentation

* [List Keys](/api-reference/keys-secrets/crud/list-keys) - List all keys
* [Create Key](/api-reference/keys-secrets/crud/create-key) - Create a new key
