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'

Overview

Authentication

All requests require an Authorization header with a valid Bearer token.

Authorization: Bearer YOUR_API_KEY

Tags Endpoint

GET /api/v3/tags

Retrieve all tags for the authenticated user.

Analytics Endpoint

GET /api/v3/analytics

Access usage analytics and insights.

Code Examples

curl
Node.js
Python

// Node.js Example
fetch('https://api.tags.com/v3/tags', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  }
}).then(res => res.json());


# Python Example
import requests
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
response = requests.get('https://api.tags.com/v3/tags', headers=headers)

Need Developer Support?

Can't find what you're looking for in these docs? Our developer support engineers are here for you.