Quick Start
This guide will help you set up Taguten and make your first API call.
Prerequisites
Before you begin, you’ll need:
- A Taguten account (sign up at taguten.com)
- An API key from your dashboard
Step 1: Create an Application
Applications are containers for your tags and items. Each application has its own set of tags, categories, and implications.
- Log in to your Taguten dashboard
- Click “Create Application”
- Give your application a name (e.g., “My Art Gallery”)
Step 2: Get Your API Key
- In your application settings, navigate to “API Keys”
- Click “Create API Key”
- Copy your API key - you won’t be able to see it again!
Step 3: Create Your First Item
Create an item and tag it in a single API call. Tags are automatically created if they don’t already 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/001", "tags": ["fox", "forest"] }'The external_url field is how you reference your own content - typically a URL to the resource you’re tagging.
Step 4: Search by Tags
Find items that match specific tags:
# Find items with both "fox" AND "forest" tagscurl "https://api.taguten.com/v1/applications/{app_id}/items?tags=fox&tags=forest" \ -H "Authorization: Bearer YOUR_API_KEY"
# Find items with "animal" but NOT "dog"curl "https://api.taguten.com/v1/applications/{app_id}/items?tags=animal&tags=-dog" \ -H "Authorization: Bearer YOUR_API_KEY"What’s Next?
- API Reference - Explore all available endpoints