OpenAPI Specification
openapi: 3.1.0
info:
title: c15t Backend Consent Init API
version: 2.1.0
description: REST API for the c15t consent backend (@c15t/backend) that powers the c15t cookie banner, consent manager, and preference center. The same API runs whether self-hosted or used through the Inth (inth.com) managed platform. This specification was DERIVED faithfully from the published open-source Hono route handlers in packages/backend of github.com/c15t/c15t (the live runtime spec is generated by hono-openapi and served at /spec.json). Requests are authenticated with a Bearer API key; a subset of endpoints are public (init/status) and are called directly by the browser SDK.
contact:
name: c15t
url: https://c15t.com/docs/self-host
license:
name: GPL-3.0
url: https://github.com/c15t/c15t/blob/main/LICENSE.md
servers:
- url: https://your-instance.c15t.dev
description: Hosted c15t backend instance (per-tenant subdomain). Self-hosted deployments mount the same routes under a configurable basePath (e.g. /api/c15t).
security:
- bearerAuth: []
tags:
- name: Init
paths:
/init:
get:
tags:
- Init
operationId: getInit
summary: Get initial consent manager state
description: 'Returns the initial state the browser SDK needs to render a banner: resolved policy pack, geo/jurisdiction, translations, and whether consent is required. Public — called directly from the client.'
security: []
responses:
'200':
description: Initial consent manager state.
content:
application/json:
schema:
type: object
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: 'API key passed as a Bearer token in the Authorization header (e.g. `Authorization: Bearer sk_live_...`). Public endpoints (init, status) require no credential.'