Reference
The Reference section contains detailed technical documentation for Bunker.
Available Documentation
API
- Control Plane gRPC API - Control Plane API Documentation
Tools
- CLI - Command Line Interface
Conventions
API Authentication
All API requests require a Bearer token:
curl -H "Authorization: Bearer $TOKEN" \
https://api.getbunker.net/v1/...
Response Format
Responses are in JSON format:
{
"data": { ... },
"meta": {
"request_id": "req_xxx",
"timestamp": "2024-01-15T10:30:00Z"
}
}
Error Codes
| Code | Meaning |
|---|---|
| 400 | Invalid request |
| 401 | Not authenticated |
| 403 | Not authorized |
| 404 | Resource not found |
| 429 | Rate limit exceeded |
| 500 | Server error |