---
title: "Retrieve a bookmark"
method: GET
path: "/bookmarks/{id}"
tags: ["Bookmarks"]
---

# Retrieve a bookmark

`GET /bookmarks/{id}`

This endpoint retrieves a specific bookmark.

## Path parameters

- `id` string, required — Bookmark ID

## Response `200`

A single bookmark

- Bookmark
  - `id` string, required — ID of the bookmark
  - `team_id` string, required — ID of the project
  - `webhook_id` string, required — ID of the associated connection (webhook)
  - `event_data_id` string, required — ID of the bookmarked event data
  - `label` string, required — Descriptive name of the bookmark
  - `alias` string, nullable — Alternate alias for the bookmark
  - `data` ShortEventData, nullable — Request data
    - `path` string, required — Request path
    - `query` string, nullable, required — Raw query param string
    - `parsed_query` union, required — JSON representation of query params
      - string, nullable
      - object
    - `headers` union, required — JSON representation of the headers
      - string
      - object
    - `body` union, required — JSON or string representation of the body
      - string
      - object
      - unknown[]
        - unknown
    - `is_large_payload` boolean, nullable — Whether the payload is considered large payload and not searchable
  - `last_used_at` string, date-time, nullable — Date the bookmark was last manually triggered
  - `updated_at` string, date-time, required — Date the bookmark was last updated
  - `created_at` string, date-time, required — Date the bookmark was created

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/hookdeck/apis/hookdeck-admin-rest-api.md) · [All operations](https://skmtc.net/hookdeck/apis/hookdeck-admin-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hookdeck/hookdeck-admin-rest-api/versions/31da4ed27d31/schema)
