ShortGenius API
ShortGeniusDevelopers
  • Introduction
  • Quickstart
  • Authentication & Essentials
  • API reference
    • Videos
      • Draft video
      • Draft video from script
      • Draft video from URL
      • Draft quiz video
      • Draft news video
      • Create video
      • List videos
      • Get video
      • Generate video topics
    • Video series
      • Generate video topics
      • Create series
      • List series
      • Get series
    • Images
      • Create image
      • List images
      • Get image
      • Get image styles
    • Audio
      • Create speech
      • List audio
      • Get audio
      • List voices
      • Get voice
    • Music
      • List music genres
      • List music
    • Publishing
      • List connections
    • Administration
      • Get usage
      • Health check
  • Guides
    • Video Generation
    • Video Series
    • Image Generation
    • Audio Generation
    • Music
    • Publishing
    • Usage & Credits
  • Resources
    • Realtime logs
    • API keys
    • OpenAPI spec
    • TypeScript SDK
    • Python SDK
    • ShortGenius
Powered by GitBook
On this page

Quickstart

PreviousIntroductionNextAuthentication & Essentials

Last updated 3 months ago

Below are the basic steps to get started with the ShortGenius API:

1

Sign Up & Retrieve API Token

  1. Sign up for a ShortGenius account at .

  2. Go to the page to retrieve your API token.

  3. Keep this token secure! You’ll use it for authenticating API calls.

2

Test the Health Endpoint

Let’s ensure everything is up and running with the /health endpoint.

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

Expected Response:

{
  "status": "ok"
}
3

Make Your First Authorized Request

Add your token to the Authorization header:

curl --request GET \
  --url "https://shortgenius.com/api/v1/music/genres" \
  --header "Authorization: Bearer YOUR_API_TOKEN"

If your token is valid, you’ll receive a JSON list of available music genres:

[
  {
    "name": "Classical",
    "recommended_for_locales": [...]
  },
  ...
]

This quickstart is enough to prove your token works and that the API is reachable. In the next sections, we’ll dive deeper into the available endpoints and show you how to create videos, images, audio, and more.


Next Steps Now that you’ve tested the waters, proceed to .

https://shortgenius.com
API keys
Authentication & Essentials