API Documentation

The Helmbay API allows you to programmatically manage your Helm charts and repositories. This documentation provides detailed information about available endpoints and authentication.

Authentication

All API requests require authentication using an API key. You can generate an API key in your account settings.

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.helmbay.com/v1/repositories

Base URL

All API requests should be made to:

https://api.helmbay.com/v1

Response Format

All responses are returned in JSON format:


{
  "data": {},
  "meta": {
    "status": 200,
    "message": "Success"
  }
}

Rate Limiting

API requests are limited to 1000 requests per hour per API key. Rate limit information is included in the response headers.

Available Endpoints