Overview
Sticker uses simple API key authentication for secure partner integration.API Key Authentication
Include your Partner API Key in theAuthorization header of every request:
Example Request
API Key Types
Live Keys
Format:
sk_live_...Use in production for real ordersTest Keys
Format:
sk_test_...Use in sandbox for testingMaking API Requests
All API requests simply require your API key in the Authorization header:Authentication Errors
Security Best Practices
Secure Key Storage
Secure Key Storage
- Store API keys in environment variables
- Use secrets management systems
- Never commit keys to version control
- Rotate keys regularly
- Never expose keys in client-side code
Transport Security
Transport Security
- Always use HTTPS
- Validate SSL certificates
- Use TLS 1.2 or higher
- Implement certificate pinning for mobile apps
Request Validation
Request Validation
- Validate all input data before sending
- Implement rate limiting to prevent abuse
- Log all API requests for audit trails
- Monitor for suspicious activity

