post
https://{yourinstance}.makaira.io/app
Register a new application on the selected instance
Registers a new app or content widget with the Makaira instance.
Requires authentication.
Request
POST /app
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Content-Type | application/json |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Unique identifier (lowercase letters, numbers, hyphens only). |
type | string | Yes | App type: app or content-widget. |
title | object | Yes | Multilingual display title (keys: language codes, e.g. de, en). |
url | string | Yes | The URL where the app is hosted. |
Example Request
{
"slug": "my-custom-app",
"type": "app",
"title": {
"en": "My Custom App",
"de": "Meine App"
},
"url": "https://myapp.example.com"
}Response
Returns the created app object.

