HostBill Tickets API

The Tickets API from HostBill — 1 operation(s) for tickets.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/hostbill-tickets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hostbill-tickets-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: HostBill Admin Accounts Tickets 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: Tickets
paths:
  /admin/api.php#getTickets:
    post:
      operationId: getTickets
      summary: List support tickets
      tags:
      - Tickets
      parameters:
      - name: call
        in: query
        required: true
        schema:
          type: string
          const: getTickets
      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