Get tags

GET /tags

Get tags. Auth not required

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
  • 422 application/json

    Unexpected error

    Hide response attribute Show response attribute object
    • errors object Required
      Hide errors attribute Show errors attribute object
GET /tags
curl \
 --request GET '/api/tags'
Response examples (200)
{
  "tags": [
    "reactjs",
    "angularjs"
  ]
}
Response examples (422)
{
  "errors": {
    "body": [
      "string"
    ]
  }
}