How to Create an API Key

Last updated: February 18, 2026

API keys allow you to authenticate and control devices in your Seam workspace. Each workspace (sandbox or production) requires its own API key.

Sandbox vs Production: Sandbox workspaces are for testing with simulated devices (API keys include test). Production workspaces connect to real devices for live use.


1. Creating Your API Key

  1. Click the workspace switcher in the upper-left corner of the Seam Console

  2. Click New Workspace (or select an existing workspace)

  3. In the left navigation, click API Keys

  4. Click Add API Key in the upper-right corner

  5. Enter a name for your API key

  6. Click Create API Key

  7. Copy and save your API key immediately

Important: Never expose API keys in web browsers or to end users.


2. Testing Your API Key

After exporting, test your key by running this command:

curl -X 'POST' \
    'https://connect.getseam.com/workspaces/get' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d '{}'

A successful response confirms your API key is working.