Muzaic API docs
More about MuzaicCall us
  • Welcome!
  • Accesing Muzaic API
  • Checking API usage and balance
  • Reference
    • ๐Ÿ”ŽWorking with tags
    • ๐ŸŽธGetting the music
      • Quickly getting an audio file
      • Advanced soundtracking
    • ๐ŸŽ›๏ธUsing music parameters
      • ๐Ÿ’ฆIntensity parameter
      • ๐ŸƒTempo parameter
      • ๐Ÿ’ƒRhythm parameter
      • ๐ŸŽ†Tone parameter
      • ๐Ÿคนโ€โ™€๏ธVariation parameter
    • โš™๏ธAPI Reference
      • accountDetails
      • audioFromHash
      • getTags
      • singleFile
      • soundtrack
  • More about Muzaic
  • Call us
Powered by GitBook
On this page
  • Getting the list of tags
  • getTags

Was this helpful?

  1. Reference
  2. API Reference

getTags

Getting the list of tags

getTags

GET /getTags

Endpoint allows you to obtain JSON with all the currently accepted mood tags for muzaic system.

{
    "tags": [
        {
            "id": "1",
            "name": "acoustic",
            "int_bonus": "0",
            "tem_bonus": "0",
            "rhy_bonus": "-1",
            "ton_bonus": "1",
            "var_bonus": "0",
            "tagCategoryId": "4",
            "secret": "0",
            "active": "1"
        },
        {
            "id": "2",
            "name": "electronic",
            "int_bonus": "0",
            "tem_bonus": "1",
            "rhy_bonus": "1",
            "ton_bonus": "0",
            "var_bonus": "-1",
            "tagCategoryId": "4",
            "secret": "0",
            "active": "1"
        }
        ],
    "tagsRelations": {
        "1": {
            "2": -1
        },
        "2": {
            "1": -1
        }
    }
}

PreviousaudioFromHashNextsingleFile

Last updated 1 year ago

Was this helpful?

โš™๏ธ