| Attribute Name | Type | Nullable | Description |
|---|---|---|---|
| id | number | false | Unique identifier for tag |
| name | string | false | User-defined name of tag |
| description | string | true | User-defined description of tag |
| archived | boolean | false | If true, the tag will not show up when creating or updating transactions in the Lunch Money app |
Use this endpoint to get a list of all tags associated with the user's account.
GET https://api.lunchmoney.dev/v1/tags
[
{
"id": 1807,
"name": "Wedding",
"description": "All wedding-related expenses",
"archived": false
},
{
"id": 1808,
"name": "Honeymoon",
"description": "All honeymoon-related expenses",
"archived": true
}
]