Harmont docs
API

API

REST. JSON. Bearer-token auth. Stable codes on every error.

Harmont is in limited access

The Harmont API is not yet open to the public. Endpoints require an account, and accounts are currently granted from the waitlist. Request access at harmont.dev — we're onboarding in batches. The reference below is published so you can build against the contract ahead of time.

The Harmont API is the REST surface to Harmont's service.

Quick orientation

Base URLhttps://api.harmont.dev/api/v0
AuthAuthorization: Bearer <token>
ErrorsSingle envelope, stable code, doc URL on each (see Errors)
EndpointsReference — every endpoint, grouped by tag
Specopenapi.json — full OpenAPI 3 document, suitable for Postman / openapi-generator / Stoplight

A minimal request

curl -fsS https://api.harmont.dev/api/v0/ping \
  -H "Authorization: Bearer $HM_TOKEN"
{ "response": "pong" }

You can create new API access tokens by navigating to the settings page in Harmont.

The full API reference is available here.

On this page