| title | Introduction |
|---|---|
| description | Welcome to the Price Tag API - A comprehensive solution for creating and managing professional price tags |
The Price Tag API is a powerful REST API that provides everything you need to create, manage, and generate professional price tags with PDF export capabilities. Built for developers, retailers, and businesses who need automated price tag generation.
Complete price tag management with filtering, pagination, and bulk operations High-quality PDF export with customizable themes and layouts Professional designs including gradient themes, minimalist styles, and sale tags Process hundreds of price tags efficiently with bulk create and update operationsGet started with the Price Tag API in just a few steps:
Verify the API is running with a simple health check ```bash curl https://your-domain.com/api/health ``` Create a price tag with a simple POST request ```bash curl -X POST https://your-domain.com/api/price-tags \ -H "Content-Type: application/json" \ -d '{"data": "Premium Coffee", "price": 1200}' ``` Generate a professional PDF from your price tags ```bash curl -X POST https://your-domain.com/api/generate-pdf-v2 \ -H "Content-Type: application/json" \ -d '{"items": [{"id": 1, "data": "Premium Coffee", "price": 1200}]}' ```| Method | Endpoint | Description |
|---|---|---|
GET |
/api/health |
API health status |
GET |
/api/price-tags |
List all price tags |
POST |
/api/price-tags |
Create price tag(s) |
GET |
/api/price-tags/{id} |
Get specific price tag |
PUT |
/api/price-tags/{id} |
Update price tag |
DELETE |
/api/price-tags/{id} |
Delete price tag |
POST |
/api/generate-pdf-v2 |
Generate PDF |
POST |
/api/generate-html |
Generate HTML preview |

