Skip to main content

Reference

The Reference section contains detailed technical documentation for Bunker.

Available Documentation

API

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

CodeMeaning
400Invalid request
401Not authenticated
403Not authorized
404Resource not found
429Rate limit exceeded
500Server error

Need Help?