# Utility endpoints

ShortGenius provides a couple of additional endpoints that don’t necessarily fit under the creation of videos, images, or audio. These are often used for testing or system checks.

***

## Health Check

**Endpoint**: `GET /health`

This endpoint verifies whether the ShortGenius service is up and running.

```bash
curl --request GET \
  --url "https://api.shortgenius.com/v1/health"
```

**Expected Response**:

```json
{
  "status": "ok"
}
```

If you receive a non-`200` status code or no response, it may indicate downtime or connectivity issues. This endpoint does **not** require authentication. Any `Authorization` header is ignored.

***

## Next Steps

* Explore the [Guides & Tutorials](/api/utility-endpoints.md) section to see how these API calls fit into real-world workflows.
* For a deep dive into all available endpoints and payload examples, continue to the [Reference](/api/utility-endpoints.md) section.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://shortgenius.gitbook.io/api/utility-endpoints.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
