Recommend Tags, Tones and Moods

AudioStack now allows you to automatically generate tags, moods and/or tones for your scripts, which can help generate recommendations of other complementary content (such as voices to use with your script), or simply to better organise your scripts.

1. Recommend Tags

Description:
Take control of your content recommendations by providing a personalized list of tags. This feature empowers you to fine-tune suggestions based on specific interests or preferences.

Endpoint:

/content/recommend/tag

Parameters:

  • text: Text to get tags recommendations for.
  • number_of_results: Number of tags to get back.
  • tags: User specified list of tags to use
  • category: User specified category.

Example :

curl --request POST \
     --url https://v2.api.audio/content/recommend/tag \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header "x-api-key: <YOUR API KEY>" \
     --data '
{
  "number_of_results": 1,
  "text": "AudioStack’s technology seamlessly integrates into your product or workflow and cuts your audio production cycles to seconds while making your budgets go further.",
  "tags": ["happy", "fun", "valuable", "fast"],
  "category": "my category"
}
'

2. Recommend Tones

Description:
Introducing the ability to recommend the best tone from AudioStack’s curated list. Tones play a crucial role in determining the most suitable voice for your text, enhancing the overall audio experience.

Endpoint:

/content/recommend/tone

Parameters:

  • text: Text to get tone recommendations for.
  • number_of_results: Number of tags to get back.

Example :

curl --request POST \
     --url https://v2.api.audio/content/recommend/tone \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header "x-api-key: <YOUR API KEY>" \
     --data '
{
  "number_of_results": 3,
  "text": "AudioStack’s technology seamlessly integrates into your product or workflow and cuts your audio production cycles to seconds while making your budgets go further."
}

3. Recommend Moods

Description:
Discover the perfect mood for your content with recommendations from AudioStack’s carefully curated list. Selecting the right mood is essential for finding the optimal sound design that complements the text.

Endpoint:

/content/recommend/mood

Parameters:

  • text: Text to get mood recommendations for.
  • number_of_results: Number of tags to get back.

Example Usage:

curl --request POST \
     --url https://v2.api.audio/content/recommend/mood \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header "x-api-key: <YOUR API KEY>" \
     --data '
{
  "number_of_results": 3,
  "text": "AudioStack’s technology seamlessly integrates into your product or workflow and cuts your audio production cycles to seconds while making your budgets go further."
}
'