List tags

GET /v1/tags

List tags

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • name[eq] string

    Get a tag by a specific name

  • name[contains] string

    Get a tag that contains this name

Responses

  • 200 application/json

    Tags returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items attributes object
      • id string Required

        The id of the tag.

      • name string Required

        The name of the tag.

      • emoji string

        The emoji of the tag

      • order integer Required

        The order of the tag.

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

GET /v1/tags
curl \
 --request GET 'https://openapi.meltingspot.io/v1/tags'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "name": "string",
      "emoji": "string",
      "order": 42
    }
  ],
  "total": 42
}