Skip to main content
Getting up and running with Bkmark takes about five minutes. By the end of this guide you’ll have a working account, the browser extension installed, a bookmark saved and tagged, and a feel for how search works. If you want to connect the API, there’s a quick example at the end.
1
Create your free account
2
Head to bkmark.it/register and sign up with your email address. No credit card is required — the Free plan is free forever.
3
After confirming your email, you’ll land on your Dashboard. This is your home screen: a live view of your most recently saved bookmarks, quick-access groups in the left sidebar, and a search bar at the top.
4
If you have an existing browser bookmarks file, go to Settings → Import to bring everything over in one step. Bkmark supports the standard Netscape HTML bookmark format exported by Chrome, Firefox, Safari, and Edge.
5
Install the browser extension
6
The extension is the fastest way to save pages as you browse.
7
  • Visit the extension page for your browser — Chrome Web Store, Firefox Add-ons, or Edge Add-ons — and click Add to browser.
  • Pin the Bkmark icon to your toolbar so it’s always one click away.
  • Click the icon for the first time and sign in with the same account you just created.
  • 8
    Once signed in, the extension badge turns from grey to your account color, confirming it’s connected.
    9
    Use the keyboard shortcut Ctrl + Shift + B (Windows/Linux) or Cmd + Shift + B (macOS) to open the save dialog from any tab without touching your mouse.
    10
    Save your first bookmark
    11
    Open any webpage you’d like to save — an article, a tool, a documentation page, anything.
    12
  • Click the Bkmark icon in your toolbar (or press the keyboard shortcut).
  • The save dialog opens. Bkmark has already pulled in the title and URL for you.
  • Optionally edit the title or add a short description in your own words.
  • Choose a Group from the dropdown, or type a new group name to create one on the spot.
  • Click Save.
  • 13
    The icon briefly animates to confirm the save. That’s it — your bookmark is now in your library.
    14
    You can also save directly from the Bkmark web app:
    15
  • Click the + New button in the top-right corner of the dashboard.
  • Choose a bookmark type: Link, Note, Code, or Image.
  • Fill in the details and click Save.
  • 16
    Organize with a tag
    17
    Tags let you slice your collection across multiple groups. Let’s add one to the bookmark you just saved.
    18
  • Click on the bookmark you saved to open its detail panel.
  • In the Tags field, type a word that describes the content — for example design, reference, or to-read.
  • Press Enter or comma to confirm the tag.
  • Add as many tags as you like, then click Save changes.
  • 19
    The tag now appears on the bookmark card. Click any tag anywhere in Bkmark to instantly filter your library to every bookmark sharing that tag.
    20
    On Pro and Team plans, enable AI auto-tagging in Settings → AI and Bkmark will suggest tags for you the moment a link is saved. You can accept all suggestions in one click.
    22
    Click the search bar at the top of the dashboard (or press / on your keyboard) and type any word that might appear in a bookmark’s title or description.
    23
    Bkmark scans your entire library as you type and shows matching results instantly. Click any result to open that bookmark’s detail panel.
    24
    Filtering tips:
    25
  • Type tag:design to filter by a specific tag.
  • Type group:work to search within a specific group.
  • Combine filters: tag:react group:work narrows to bookmarks tagged react inside your Work group.
  • 26
    Pro and Team plans include AI semantic search. Instead of matching exact words, semantic search understands meaning — so a query like “articles about remote work culture” surfaces relevant bookmarks even if those words don’t appear verbatim.

    Make your first API call

    If you’re on a Pro or Team plan, you can access your bookmarks programmatically using the Bkmark REST API. Get your API key:
    1. Go to Settings → API.
    2. Click Generate API key.
    3. Copy the key — you won’t be able to see it again after closing the dialog.
    Fetch your bookmarks with curl:
    curl https://api.bkmark.it/api/v1/bookmarks \
      -H "Authorization: Bearer YOUR_API_KEY"
    
    A successful response looks like this:
    {
      "data": [
        {
          "id": "bk_01hx9kz2p4",
          "title": "How to Write Great Documentation",
          "url": "https://example.com/great-docs",
          "description": "A guide to writing docs developers actually read.",
          "tags": ["writing", "docs", "reference"],
          "groupId": "grp_01hx8ab3c1",
          "createdAt": "2025-06-01T10:22:00.000Z"
        }
      ],
      "pagination": {
        "page": 1,
        "perPage": 20,
        "total": 142
      }
    }
    
    API access requires a Pro or Team plan. See the API Reference for the full list of endpoints, query parameters, and response schemas.

    What’s next?

    Browser Extension

    Learn all the extension shortcuts and how to save different content types from your browser.

    Integrations

    Connect Slack and Zapier to save bookmarks automatically from the tools you use daily.

    Plans & Pricing

    Unlock AI features, the API, and unlimited storage by upgrading to Pro or Team.

    API Reference

    Explore every available endpoint and build automations on top of your library.