Authorization
SignalWire REST APIs support two authentication methods: Basic Authentication and Bearer Authentication. Each endpoint specifies which method it accepts.
Basic authentication
Basic Authentication is the standard method for authenticating with SignalWire REST APIs, using your Project ID and API Token.
How it works
Include an Authorization header with each request:
To build the credentials string:
- Join your Project ID and API Token with a colon:
ProjectID:APIToken - Base64 encode the result
Example
Given the Project ID a1b2c3d4-e5f6-7890-abcd-ef1234567890 and API Token 4tjCGnmAeQ0hwFmFDhwfgww880X2lsnuR60VMyasGR3hFpSyvu:
Finding your credentials
Your Project ID and API Tokens are available in the SignalWire Dashboard.

API token scopes
Tokens can be scoped to limit API access. Select scopes when creating or editing a token in the Dashboard.
Getting a 401 Unauthorized?
Check that your token has the required scope.
Manage scopes in the SignalWire Dashboard.
cURL examples
Security best practices
- Keep API credentials server-side. Use Bearer tokens for client applications.
- Set short token lifetimes to reduce risk if a token leaks.
- Scope tokens narrowly—only grant what’s needed.
- Always use HTTPS. Plain HTTP requests will fail.
- Rotate API tokens periodically from your Dashboard.