starti.app
REST API

Overview

Server-to-server REST API for integrating with starti.app. Requires an API key from the starti.app manager.

Base URL

https://api.starti.app/v1

Authentication

All requests must include an API key in the x-api-key header and set Content-Type to application/json.

You can obtain your API key from the starti.app manager.

curl -X POST \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  https://api.starti.app/v1/...

Errors

StatusDescription
400 Bad RequestThe request body failed validation. The response includes an issues array with details.
401 UnauthorizedThe API key is missing or invalid.

On this page