# Get Attestation Certificate

## Retrieve Attestation Certificate

<mark style="color:blue;">`GET`</mark> `/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}`

#### Path Parameters

| Name                                               | Type   | Description                                     |
| -------------------------------------------------- | ------ | ----------------------------------------------- |
| entity-name<mark style="color:red;">\*</mark>      | String | Name of Entity for which attestation was raised |
| entity-id<mark style="color:red;">\*</mark>        | String | ID of entity for which attestation was raised   |
| attestation-name<mark style="color:red;">\*</mark> | String | Name of attestation for that entity-type        |
| attestation-id<mark style="color:red;">\*</mark>   | String | ID of the attestation for that record of entity |

#### Headers

| Name                                     | Type   | Description                                                                                         |
| ---------------------------------------- | ------ | --------------------------------------------------------------------------------------------------- |
| accept<mark style="color:red;">\*</mark> | String | Set to `application/pdf, application/json, text/html, image/svg+xml`                                |
| template                                 | String | if `enable_external_templates` is set to true, send in a url which has html template                |
| template-key                             | String | A key pointing to html template which is present in `Schema`                                        |
| access-token                             | String | Set to `Bearer {access-token}` if roles in schema is not anonymous. Else authorization can be empty |

{% tabs %}
{% tab title="200: OK Successful retrieval of certification" %}

```markup
PDF File
```

{% endtab %}
{% endtabs %}

### Usage

### cURL

```shell
curl --location --request GET '{registry-url}/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}' \
--header 'Accept: application/pdf' \
--header 'template: {url}' \
--header 'Authorization: Bearer {access-token}'
```

### HTTPie

```shell
http GET '{registry-url}/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}' \
 Accept:'application/pdf' \
 template:'{url}' \
 Authorization:'Bearer {access-token}'
```

> `{registry-url}` is usually [http://localhost:{port}](https://docs.sunbirdrc.dev/api-reference/attestation-api/http:/localhost:{port}). The port can be found under the `registry` section in the `docker-compose.yml` file and is usually `8081`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sunbirdrc.dev/api-reference/attestation-api/get-attestation-certificate.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
