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.
curl -X GET 'https://api.tags.com/v3/tags' \ -H 'Authorization: Bearer YOUR_API_KEY'
All requests require an Authorization header with a valid Bearer token.
Authorization: Bearer YOUR_API_KEY
GET /api/v3/tags
Retrieve all tags for the authenticated user.
GET /api/v3/analytics
Access usage analytics and insights.
// 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)
Can't find what you're looking for in these docs? Our developer support engineers are here for you.