Skip to main content
GET
/
health
curl --request GET \
  --url https://v1-api.ticket-plus.app/health
(empty body)

Documentation Index

Fetch the complete documentation index at: https://allridegmbh.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Ping this endpoint to confirm the API is up and accepting connections. No authentication is required.

Authorizations

None required. This endpoint is publicly accessible.

Response

(empty body)
null
A 204 No Content response with no body is the only success signal. Any 5xx, timeout, or connection error indicates a service disruption.
Use this endpoint in health checks and readiness probes. If you receive anything other than 204, treat the API as unavailable.
curl --request GET \
  --url https://v1-api.ticket-plus.app/health
(empty body)

Authorizations

Authorization
string
header
required

HTTP Basic Auth using your API key credentials. Use the username and password issued from the Developer Portal. Encode them as Base64(username:password) and pass in the Authorization: Basic <token> header.

Response

204 - application/json

Service is healthy and accepting requests.

Empty body — a 204 response means the service is healthy.