List Tags
client.tags.list(TagListParams { after, before, limit, 4 more } query?, RequestOptionsoptions?): TagListResponse
GET/v1/tags/
Get the list of all tags (from agents and blocks) that have been created.
ParametersExpand Collapse
query: TagListParams { after, before, limit, 4 more }
query: TagListParams { after, before, limit, 4 more }
List Tags
import Letta from '@letta-ai/letta-client';
const client = new Letta({
apiKey: process.env['LETTA_API_KEY'], // This is the default and can be omitted
});
const tags = await client.tags.list();
console.log(tags);[
"string"
]Returns Examples
[
"string"
]