Skip to content

Quickstart

Get your API key and make your first Tholos API request in under 5 minutes.

This guide walks you through creating a Personal Access Token and making your first API call.

  • A Tholos account with at least one organization
  • Access to the Tholos Dashboard
  1. Create a Personal Access Token

    Go to Settings > Account > Advanced in the Tholos Dashboard. Click Create Token, give it a descriptive name, and optionally set an expiration date.

    Copy the token immediately — it is only shown once. The token will look like tholos_pat_abc123...

  2. Store the token securely

    Save your token in an environment variable:

    Terminal window
    export THOLOS_API_TOKEN="tholos_pat_your_token_here"
  3. Make your first request — verify your token works by fetching your user profile (see examples below).

  4. List your vaults — fetch the vaults in your organization (see examples below).

Terminal window
curl https://api.tholos.app/user/me \
-H "Authorization: Bearer $THOLOS_API_TOKEN"

You should get back your user profile with your id, email, and organizations.

Terminal window
curl https://api.tholos.app/organization/{organizationId}/vaults \
-H "Authorization: Bearer $THOLOS_API_TOKEN"