API Reference
Complete API reference documentation for Pixashot, including authentication, endpoints, error handling, and rate limiting.
Pixashot provides a RESTful API for capturing high-quality screenshots of web pages. This reference covers all API endpoints, request options, and response formats.
Base URL
https://your-pixashot-instance/
Authentication
Pixashot uses token-based authentication. Include your token in all requests:
curl -X POST https://your-pixashot-instance/capture \
-H "Authorization: Bearer your_token" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
Authentication Methods
Bearer Token
- Include in
Authorization
header - Required for all API requests
- Format:
Bearer your_token
- Include in
Signed URLs
- Alternative to header authentication
- Includes expiration timestamp
- Useful for client-side requests
Available Endpoints
Endpoint | Method | Description |
---|---|---|
/capture |
POST | Capture a screenshot |
/health |
GET | Service health status |
/health/live |
GET | Basic liveness check |
/health/ready |
GET | Readiness check |
Common HTTP Status Codes
200
: Success400
: Invalid request parameters401
: Missing authentication403
: Invalid authentication429
: Rate limit exceeded500
: Server error
Rate Limiting
Rate limits are configured server-side:
# Environment configuration
RATE_LIMIT_ENABLED=true
RATE_LIMIT_CAPTURE="5 per second"
Rate limit headers:
X-RateLimit-Limit: 5
X-RateLimit-Remaining: 4
X-RateLimit-Reset: 1635724800
Response Formats
Pixashot supports multiple response formats:
png
: Default format, lossless with alpha channeljpeg
: Configurable quality compressionwebp
: Modern format with superior compressionpdf
: Document format with customizable paper sizehtml
: Complete page source capture
Next Steps
- Capture Endpoint: Main screenshot endpoint
- Request Options: Available parameters
- Response Handling: Response formats
- Rate Limiting: Request throttling
Get the Latest Updates