---
title: "Get a digests by id"
method: GET
path: "/digests/{digests_id}"
tags: ["Digests"]
---

# Get a digests by id

`GET /digests/{digests_id}`

This method returns the digests that matches the entered ID.

## Path parameters

- `digests_id` integer, required

## Response `200`

Digests object

- Digests
  - `account_id` integer, required
  - `created_by` integer, required
  - `created_on` string, date-time, required
  - `digests_data` union, required — The digests list signed, or to sign
    - SignedDigest[]
      - `derivation_path` string, required — The full derivation path to sign the digests
      - `digest` string, required — A HexString digests. For currencies that use secp256K1, string must be 32 bytes long
      - `pub_key` string, required — The public key used to sign the digests
      - `signature` DigestSignature, required
        - `der` string, nullable — The der value of the signature
        - `r` string, required — The r value of the signature
        - `s` string, required — The s value of the signature
        - `v` integer, nullable — The v value of the signature
    - ToSignDigest[]
      - `derivation_path` string, required — The full derivation path to sign the digests
      - `digest` string, required — A HexString digests. For currencies that use secp256K1, string must be 32 bytes long
  - `id` integer, required
  - `last_request` integer, nullable
  - `notes` TransactionOrMessageNote[], required — Notes attached to this message
    - `content` string, required
    - `title` string, required
  - `status` 'ABORTED' | 'APPROVED' | 'PENDING_APPROVAL' | 'PENDING_CREATE_IN_HSM' | 'SIGNED', required

## Other responses

- `404` — Digests not found

---

[API](https://skmtc.net/ledgerhq/apis/vault-api.md) · [All operations](https://skmtc.net/ledgerhq/apis/vault-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ledgerhq/vault-api/revisions/c88faa17bc25/schema)
