> ## Documentation Index
> Fetch the complete documentation index at: https://developers.tally.so/llms.txt
> Use this file to discover all available pages before exploring further.

# API keys

> Learn how API keys work on Tally

API keys on Tally allow you to access your account programmatically. This is useful for integrating Tally into your application or with other tools and services.

<Warning>
  For now, each API key is tied to a specific user - meaning that it will inherit the permissions of
  the user, also when they change. With the key you will be able to access all of the user's
  resources.
</Warning>

## Creating an API key

You can create an API key by following these steps:

<Steps>
  <Step title="Go to settings">
    Go to **Settings** > [**API keys**](https://tally.so/settings/api-keys).

    <Frame>
      <img src="https://mintcdn.com/tally/dNtl8XLd2Tzd_ywC/images/api-keys/overview.jpg?fit=max&auto=format&n=dNtl8XLd2Tzd_ywC&q=85&s=c4e0692aa7dff4a5d0a2cd2788ce57a4" alt="API keys overview" width="1440" height="900" data-path="images/api-keys/overview.jpg" />
    </Frame>
  </Step>

  <Step title="Create an API key">
    Click on the "Create API key" button.

    Currently, you can only create an API key in the context of your own user. While we might add fine-grained permissions in the future, it's not option right now.

    <Frame>
      <img src="https://mintcdn.com/tally/dNtl8XLd2Tzd_ywC/images/api-keys/creating.jpg?fit=max&auto=format&n=dNtl8XLd2Tzd_ywC&q=85&s=8dba33156529a3ee8b3805e3d866473e" alt="Creating an API key" width="1440" height="900" data-path="images/api-keys/creating.jpg" />
    </Frame>
  </Step>

  <Step title="Store your API key">
    Once your API key is created, make sure to copy and store it in a safe place. You won't be able to see it again for security reasons. If it gets lost, you can create a new one.

    <Frame>
      <img src="https://mintcdn.com/tally/dNtl8XLd2Tzd_ywC/images/api-keys/created.jpg?fit=max&auto=format&n=dNtl8XLd2Tzd_ywC&q=85&s=d701df80b35544c1c3f69099cd0917c1" alt="API key created" width="1440" height="900" data-path="images/api-keys/created.jpg" />
    </Frame>
  </Step>

  <Step title="Use your API key">
    Now that you have your API key, you can use it to access your account's resources programmatically via any API request as a bearer token.

    ```
    Authorization: Bearer tly-xxxx
    ```
  </Step>
</Steps>

<Tip>
  When you remove a user from your organization (or they leave your organization), all API keys
  associated with that user will stop working as well. Keep this in mind when managing users.
</Tip>
