Video Series
Generating Bulk Video Topics
import { ShortGenius } from 'shortgenius'
const client = new ShortGenius({
bearerAuth: 'YOUR_API_TOKEN'
})
const topics = await client.generateVideoTopics({
parent_topic: 'Water Conservation',
locale: 'en-US',
number_of_topics: 50,
content_type: 'Custom'
})
console.log(`Generated ${topics.length} topics:`)
topics.slice(0, 5).forEach(topic => {
console.log(`- ${topic}`)
})from shortgenius import Shortgenius
client = Shortgenius(api_key="YOUR_API_TOKEN")
topics = client.videos.generate_topics(
parent_topic="Water Conservation",
locale="en-US",
number_of_topics=50,
content_type="Custom"
)
print(f"Generated {len(topics)} topics:")
for topic in topics[:5]:
print(f"- {topic}")Series (Batch or Ongoing Video Production)
Create a Video Series
List All Series
Retrieve a Single Series
Next Steps
Last updated