List Tags

Retrieve tags from your SaveIt.now account using the API

Retrieve all tags from your SaveIt.now account with pagination support.

Query Parameters

ParameterTypeRequiredDescription
limitintegerNoNumber of results per page (default: 20, max: 100)
cursorstringNoCursor for pagination (used for fetching next page)

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
tagsarrayArray of tag objects
tags[].idstringUnique identifier for the tag
tags[].namestringDisplay name of the tag
tags[].typestringTag type: USER (manually created) or IA (AI-generated)
tags[].bookmarkCountintegerNumber of bookmarks associated with this tag
hasMorebooleanIndicates if there are more results available
nextCursorstringCursor for fetching the next page (null if no more results)

Tag Types

SaveIt.now uses two types of tags:

  • IA (AI-generated): Tags automatically created by AI when processing bookmarks
  • USER: Tags manually created by users

Both types are returned in the API response and can be identified by the type field.

Notes

  • Tags are sorted by ID in ascending order for consistent pagination
  • Empty tag lists are valid responses (returns empty array)
  • The bookmarkCount field shows the total number of bookmarks associated with each tag
  • AI-generated tags (type: "IA") are created automatically during bookmark processing
  • User tags (type: "USER") are created manually by users