For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

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

Expected Response:

{
  "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 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 section.

Last updated