HostBill Domains API

The Domains API from HostBill — 1 operation(s) for domains.

OpenAPI Specification

hostbill-domains-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: HostBill Admin Accounts Domains API
  description: Minimal OpenAPI description for the HostBill Admin HTTP API. All operations are POSTed to a single endpoint with a `call` parameter selecting the underlying function. Authentication uses `api_id` and `api_key` query/body parameters. Generated from public documentation; verify before production use.
  version: '2.0'
  contact:
    name: HostBill API Documentation
    url: https://api2.hostbillapp.com/
  x-generated-from: https://api2.hostbillapp.com/
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://yourinstance.hostbillapp.com
  description: HostBill installation (replace host)
  variables:
    yourinstance:
      default: yourinstance.hostbillapp.com
      description: Your HostBill installation host
security:
- apiKeyId: []
  apiKeySecret: []
tags:
- name: Domains
paths:
  /admin/api.php#getDomains:
    post:
      operationId: getDomains
      summary: List domains
      tags:
      - Domains
      parameters:
      - name: call
        in: query
        required: true
        schema:
          type: string
          const: getDomains
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        success:
          type: boolean
        call:
          type: string
        server_time:
          type: integer
  securitySchemes:
    apiKeyId:
      type: apiKey
      in: query
      name: api_id
    apiKeySecret:
      type: apiKey
      in: query
      name: api_key