Creating Tags
Tags are the core of tagd-ai. Each tag is a container for content that's accessible via a unique QR code. This guide covers all the ways to create tags.
Creating a New Tag
From the Dashboard
- Click the + New Tag button in the top right corner
- A new untitled tag opens in the editor
- Add a title and start adding content
- Your tag is automatically saved
From Folders
- Navigate to a folder in the sidebar
- Click + New Tag within that folder
- The tag is automatically organized in that folder
Using Keyboard Shortcuts
- Press
Nfrom the dashboard to create a new tag - Press
Ctrl/Cmd + Nfrom anywhere
Claiming Existing Tags
If you have a physical tagd-ai product (like a pre-printed QR code):
- Scan the QR code with your phone
- If the tag is unclaimed, you'll see a "Claim this Tag" button
- Sign in to your tagd-ai account
- Click Claim Tag to take ownership
- The tag is now yours to edit
Claim Limits
Free accounts can claim up to 5 tags. Upgrade to Pro for unlimited claims.
Creating Tags via API
For programmatic tag creation:
curl -X POST https://api.tagd-ai.com/v1/tags \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "My API Tag",
"content": [
{
"type": "text",
"content": "Created via API"
}
]
}'
See the API Reference for complete documentation.
Tag Properties
Every tag has these properties:
| Property | Description |
|---|---|
| Title | The name of your tag (visible to viewers) |
| Short ID | Unique 6-character identifier (auto-generated) |
| Content | Blocks of content (text, images, files, etc.) |
| Permissions | Who can read and write |
| Created | Timestamp of creation |
| Updated | Timestamp of last edit |
| Owner | The user who owns the tag |
Duplicating Tags
Create a copy of an existing tag:
- Open the tag you want to duplicate
- Click the ⋮ menu in the toolbar
- Select Duplicate
- A new tag opens with copied content
- The duplicate gets a new Short ID
Template Tags
Use duplicating to create template tags. Create one tag with your standard format, then duplicate it for new items.
Importing Content
From Other Platforms
Currently, direct import from other platforms isn't supported. You can:
- Copy/paste text content directly
- Upload files from your device
- Use the API for automated imports
From Files
- Drag and drop files directly into the editor
- Supported: images, PDFs, documents, and more
Best Practices
Naming Conventions
- Use descriptive, searchable titles
- Include identifiers if tracking assets (e.g., "Laptop - SN12345")
- Keep titles under 60 characters for best display
Organization from the Start
- Create folders before creating many tags
- Use hashtags in content for filtering
- Pin important tags for quick access
Content Planning
- Plan your content structure before creating
- Use consistent formatting across related tags
- Consider mobile viewers (most scans are on phones)