API
Tags
List tags

List All Tags

  • Name
    get
    Type
    /v1/tags
    Description

    Send a GET request to list a tags.

Request

Example

curl -X GET "https://api.simplystack.com/v1/tags" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0" \
 

Response

JSON object with a key named tags which is an array of the following attributes:

Attributes

See tag model.

Example

json
{
  "tags": [
    {
      "name": "web"
    },
    {
      "name": "php"
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 1,
      "next_page": null,
      "pages": 1,
      "per_page": 25,
      "previous_page": null,
      "total": 2
    },
    "query": null,
    "sort": null
  }
}