Test and explore Tags API endpoints directly from your browser. Try our interactive API playground to build and test API calls in real-time.
// Set your API key here
curl -X GET 'https://api.tags.com/v3/tags' \
-H 'Authorization: Bearer YOUR_API_KEY'
Use your API key as Bearer token in the Authorization header for all requests.
Retrieve a list of all available tags for the authenticated user.
curl -X GET 'https://api.tags.com/v3/tags' \
-H 'Authorization: Bearer YOUR_API_KEY'
Create a new tag with specified name and metadata.
curl -X POST 'https://api.tags.com/v3/tags' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"name": "urgent", "type": "work"}'
Update an existing tag by its ID.
curl -X PUT 'https://api.tags.com/v3/tags/5z98f1' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"enabled": false}'
Delete a tag by its ID.
curl -X DELETE 'https://api.tags.com/v3/tags/5z98f1' \
-H 'Authorization: Bearer YOUR_API_KEY'
Request succeeded.
Invalid request format.
Authentication credentials are missing.
Resource not found.
Try out the API explorer and see how powerful Tags API can be for your project.