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

# Get Certificate

> Get a single certificate by id

## Overview

Retrieve a single certificate by id.

<Note>
  **Scope required:** `certificates:read` | **Rate limit:** 30 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/certificates/clx...
```

### Path Parameters

<ParamField path="id" type="string" required>
  Certificate id (from `list-certificates`)
</ParamField>

### Query Parameters

<ParamField query="cvId" type="string">
  Target a specific resume by its id (from the list endpoint). Omit to use your base/default resume.
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "id": "clx...",
    "name": "AWS Solutions Architect Professional",
    "issuer": "Amazon Web Services",
    "description": "...",
    "issueDate": "2024-03-15T00:00:00.000Z",
    "expiryDate": "2027-03-15T00:00:00.000Z",
    "credentialId": "AWS-SAP-12345",
    "verificationUrl": "https://aws.amazon.com/verification/...",
    "createdAt": "2026-01-15T10:00:00.000Z",
    "updatedAt": "2026-01-15T10:00:00.000Z"
  }
}
```

Returns `404` if the certificate does not exist or does not belong to the authenticated user.
