Skip to content

Introduction

Welcome to Taguten, the tagging infrastructure service that brings the power of Booru-style tagging to any application.

What is Taguten?

Taguten is a SaaS platform that provides sophisticated tagging infrastructure as a service. Instead of building complex tag systems from scratch, you can use Taguten’s REST API to add powerful tagging capabilities to your application.

Key Features

  • Tag Implications - Define relationships between tags. When you tag something “fox”, automatically apply “canine” and “animal”.
  • Tag Aliases - Support multiple names for the same concept. “kitsune” becomes “fox” automatically.
  • Categories - Organize tags into categories like “character”, “artist”, or “copyright”.
  • RESTful API - A clean, well-documented API that works with any language or framework.

Quick Example

Terminal window
# Create an item with tags (tags are auto-created if they don't exist)
curl -X POST https://api.taguten.com/v1/applications/{app_id}/items \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"external_url": "https://example.com/artwork/123",
"tags": ["fox", "forest", "night"]
}'
# Implications are applied automatically at write-time
# If you've set up: fox → canine → animal
# The item will have all three tags

Getting Started

Ready to add powerful tagging to your application?

  1. Quick Start - Get up and running in 5 minutes
  2. API Overview - Learn about the API structure