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
  1. API reference
  2. Video series

Generate video topics

PreviousVideo seriesNextCreate series

Last updated 3 months ago

Generate video topics

post

Generate ideas for around 50 videos within a given topic. You can then pass these to the Create video endpoint.

Authorizations
Body

Parameters for generating video topic suggestions.

parent_topicstringOptional

Base idea or theme for generating custom topics.

localestring · enumOptional

Locale for topic generation.

Default: autoPossible values:
number_of_topicsnumber · max: 100Optional

Approximate number of topics to generate (max 100).

Default: 50
content_typestring · enumOptional

Content type of the video.

Default: CustomPossible values:
Responses
200
Successful response
application/json
Responsestring[]

List of generated video topics.

400
Invalid request
application/json
401
Unauthorized request
application/json
post
POST /api/v1/videos/topics HTTP/1.1
Host: shortgenius.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 85

{
  "parent_topic": "text",
  "locale": "auto",
  "number_of_topics": 50,
  "content_type": "Custom"
}
[
  "text"
]