Tags API Documentation

Access powerful APIs to build, extend, and integrate the Tags platform into your applications. We support RESTful endpoints, Webhooks, and SDKs for all major platforms.

� Getting Started
curl -X GET https://api.tags.com/v3/tags \
  -H "Authorization: Bearer YOUR_API_KEY"
                    

API Capabilities

REST API

Our core RESTful API provides full access to tags, accounts, analytics, and integration endpoints. Supports all CRUD operations.

• /api/v3/tags • /api/v3/analytics • /api/v3/integrations

Webhooks

Get real-time event updates through our HTTP webhook system. Receive notifications for tag changes, account events, and system alerts.

• tag.created • tag.updated • system.error

Authentication

Bearer Token Authentication

Requests must include an `Authorization` header with a valid Bearer token

Example request header:

                    Authorization: Bearer YOUR_API_KEY
                

Code Example

curl
Node.js
Python

// Get all tags for current user
curl -X GET 'https://api.tags.com/v3/tags' \
  -H 'Authorization: Bearer YOUR_API_KEY'
            

Ready to Build With Tags?

Turn your ideas into reality with our powerful developer ecosystem. Start building today.

```