> ## 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 Keystore

> Retrieves detailed information about a specific keystore including its complete configuration and keystore file content.

## Endpoint

```
GET /apiops/projects/{projectName}/keystores/{keystoreName}/
```

## 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         |
| keystoreName | string | Yes      | Name of the keystore |

## Response

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

## cURL Example

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

## Permissions

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

## Related Documentation

* [List Keystores](/api-reference/keys-secrets/crud/list-keystores) - List all keystores
* [Create Keystore](/api-reference/keys-secrets/crud/create-keystore) - Create a new keystore
