v1 Tags
Legacy API — The v1 API is no longer receiving new features. For new projects, use the v2 API. See the migration guide to update existing integrations.

Tags

Tags Object

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

Get All Tags

Use this endpoint to get a list of all tags associated with the user's account.

HTTP Request

GET https://api.lunchmoney.dev/v1/tags


Example Response

[
    {
        "id": 1807,
        "name": "Wedding",
        "description": "All wedding-related expenses",
        "archived": false
    },
    {
        "id": 1808,
        "name": "Honeymoon",
        "description": "All honeymoon-related expenses",
        "archived": true
    }
]