Housecall Pro · Capability

Housecall Pro Public API — Estimates

Housecall Pro Public API — Estimates. CRUD operations against the /estimates resource including multi-option estimates and approval status tracking.

Housecall Pro Public API — Estimates is a Naftiko capability published by Housecall Pro, one of 6 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Housecall Pro, Estimates, and Sales.

Run with Naftiko Housecall ProEstimatesSales

Capability Spec

estimates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Housecall Pro Public API — Estimates
  description: Housecall Pro Public API — Estimates. CRUD operations against the /estimates resource including
    multi-option estimates and approval status tracking.
  tags:
  - Housecall Pro
  - Estimates
  - Sales
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    HOUSECALL_PRO_API_KEY: HOUSECALL_PRO_API_KEY
capability:
  consumes:
  - type: http
    namespace: estimates
    baseUri: https://api.housecallpro.com
    description: Housecall Pro Estimates business capability.
    resources:
    - name: estimates
      path: /estimates
      operations:
      - name: listestimates
        method: GET
        description: List Housecall Pro Estimates
      - name: createestimate
        method: POST
        description: Create A Housecall Pro Estimate
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: estimate
      path: /estimates/{estimate_id}
      operations:
      - name: getestimate
        method: GET
        description: Get A Housecall Pro Estimate
        inputParameters:
        - name: estimate_id
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: 'Token {{env.HOUSECALL_PRO_API_KEY}}'
      placement: header