List all tags in the vault
GET
/tags
const url = 'https://api.engram.page/tags';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.engram.page/tags \ --header 'Authorization: Bearer <token>'Returns the distinct set of tags used across all notes in the current vault.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Tags
Media typeapplication/json
TagsResponse
object
tags
required
Array<object>
object
name
string
Examplegenerated
{ "tags": [ { "name": "example" } ]}