Authentication for Manifold API
Obtaining Your API Token
Generate a New Token
To access the Manifold API, you'll need to generate an API token:
- Log into the Manifold Portal
- Navigate to Settings (bottom-left corner)
- Select the API Tokens tab
- Enter a descriptive Token Name (e.g., "Development Access")
- Click Generate Token
- Immediately Copy and Securely Store Your Token
Warning: You cannot view this token again after generation. Store it securely and treat it like a password.
API Authentication Mechanism
Required Headers
Every API request must include two critical headers:
| Header Name | Description | Required |
|---|---|---|
x-api-key | Your unique API token | Yes |
Connection-Id | Specifies the data source | Depends on endpoint |
Example Request
curl --request GET 'https://api.analytics.autos/connections' \
--header 'x-api-key: YOUR_API_KEY'Security Best Practices
Key Management
- Never Share Your API Key
- Treat as sensitive credentials
Troubleshooting Authentication
Common Authentication Errors
| Error Code | Meaning | Solution |
|---|---|---|
401 Unauthorized | Invalid or expired token | Generate a new API key |
403 Forbidden | Insufficient permissions | Verify account access levels |
Verification Checklist
- ✅ Confirm API key is valid
- ✅ Ensure correct header syntax
- ✅ Check connection permissions
- ✅ Validate endpoint requirements
Key Lifecycle
Token Limitations
- Cannot Refresh: Each token is a one-time generation
- Full Account Access: Provides complete API permissions
- Immediate Revocation: Can be disabled in portal
Getting Help
Experiencing authentication issues?
Updated about 10 hours ago
