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
Click the workspace switcher in the upper-left corner of the Seam Console
Click New Workspace (or select an existing workspace)
In the left navigation, click API Keys
Click Add API Key in the upper-right corner
Enter a name for your API key
Click Create API Key
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.