# getTags

## Get available tags

> Returns list of all available tags for music generation

```json
{"openapi":"3.0.0","info":{"title":"Muzaic Core API","version":"1.0.0"},"tags":[{"name":"Tags","description":"Tag management operations"}],"servers":[{"url":"https://m10.muzaic.ai","description":"Core API server"}],"security":[{"apiKeyAuth":[]}],"components":{"securitySchemes":{"apiKeyAuth":{"type":"apiKey","in":"header","name":"MuzaicAPI-Secret-Key"}}},"paths":{"/getTags":{"get":{"summary":"Get available tags","description":"Returns list of all available tags for music generation","tags":["Tags"],"responses":{"200":{"description":"Tags retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{"tags":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer"},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"active":{"type":"boolean"}}}}}}}}},"401":{"description":"Unauthorized"},"429":{"description":"Rate limit exceeded"}}}}}}
```
