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

# How to find your API key and use the lobstr.io REST API

> Locate your lobstr.io API key in account Settings to access the REST API for triggering Squid runs and fetching scraped results programmatically.

Your lobstr.io API key gives you programmatic access to your scraping jobs. You can use it to trigger Squids, check their status, and retrieve results via the [lobstr.io REST API](https://docs.lobstr.io) — without touching the dashboard.

## Find your API key

<Frame>
  <img src="https://mintcdn.com/lobstrio-8dcae32c/OdyaQ43VF8ugNtE7/images/how-to-find-your-api-key/api-key-settings.png?fit=max&auto=format&n=OdyaQ43VF8ugNtE7&q=85&s=bf34a5a4174b240a00ee4e81c2be0d6b" alt="Find and copy your lobstr.io API key from Settings" width="1920" height="912" data-path="images/how-to-find-your-api-key/api-key-settings.png" />
</Frame>

<Steps>
  <Step title="Go to Settings">
    Log in to your [lobstr.io dashboard](https://app.lobstr.io) and click **Settings**.
  </Step>

  <Step title="Open the API key section">
    On the Settings page, click the **API key** tab.
  </Step>

  <Step title="Copy your key">
    Click the **Copy** button to copy your API key to the clipboard.
  </Step>
</Steps>

## Use your API key

Pass your API key as a `Token` in the `Authorization` header of every request to the lobstr.io API:

```bash theme={null}
curl -X GET "https://api.lobstr.io/v1/me" -H "Authorization: Token YOUR_API_KEY"
```

Replace `YOUR_API_KEY` with the key you copied from Settings. For the full list of available endpoints, see the [lobstr.io API documentation](https://docs.lobstr.io).

<Warning>
  Treat your API key like a password. Do not share it publicly, commit it to version control, or include it in client-side code. If your key is compromised, generate a new one from Settings immediately.
</Warning>
